From eeb17fd581546d757cfa63cfaeaa6fa735dac9dd Mon Sep 17 00:00:00 2001 From: Christof Rabensteiner Date: Tue, 19 Mar 2019 07:37:32 +0100 Subject: Init Repo + Contract App2mzs - Can generate java sources with wsdl2java (mvn generate-sources) - Add multiple versions of app2mzs because I don't know which one is right. - Fix zuseutil's wsdl (import statement) - Remove header in 1.5.3-rc1's wsdl --- pom.xml | 90 ++++++ .../mzs1.4.1/app2mzs.plsdl/egovutilsapp2mzs.wsdl | 46 +++ .../mzs1.4.1/app2mzs.plsdl/zusemsgapp2zuse.wsdl | 55 ++++ .../mzs1.4.1/app2mzs.plsdl/zuseserverapp2zuse.wsdl | 55 ++++ .../mzs1.4.1/app2mzs.plsdl/zusespocsapp2zuse.wsdl | 57 ++++ .../mzs1.4.1/app2mzs.plsdl/zuseutilapp2mzs.wsdl | 46 +++ src/main/resources/mzs1.4.1/app2mzs.wsdl | 54 ++++ src/main/resources/mzs1.4.1/app2mzs.xsd | 342 +++++++++++++++++++++ .../resources/mzs1.4.1/mzs_mypersondata_en.xsd | 267 ++++++++++++++++ .../mzs1.4.1/zuse2app.plsdl/zusemsgzuse2app.wsdl | 69 +++++ .../zuse2app.plsdl/zuseserverzuse2app.wsdl | 69 +++++ .../mzs1.4.1/zuse2app.plsdl/zusespocszuse2app.wsdl | 71 +++++ src/main/resources/mzs1.5.3.rc1/app2mzs.wsdl | 54 ++++ src/main/resources/mzs1.5.3.rc1/app2mzs.xsd | 342 +++++++++++++++++++++ .../resources/mzs1.5.3.rc1/mzs_mypersondata_en.xsd | 267 ++++++++++++++++ src/main/resources/zuseutils/app2mzs.wsdl | 48 +++ src/main/resources/zuseutils/app2mzs.xsd | 307 ++++++++++++++++++ .../resources/zuseutils/mzs_mypersondata_en.xsd | 267 ++++++++++++++++ 18 files changed, 2506 insertions(+) create mode 100644 pom.xml create mode 100644 src/main/resources/mzs1.4.1/app2mzs.plsdl/egovutilsapp2mzs.wsdl create mode 100644 src/main/resources/mzs1.4.1/app2mzs.plsdl/zusemsgapp2zuse.wsdl create mode 100644 src/main/resources/mzs1.4.1/app2mzs.plsdl/zuseserverapp2zuse.wsdl create mode 100644 src/main/resources/mzs1.4.1/app2mzs.plsdl/zusespocsapp2zuse.wsdl create mode 100644 src/main/resources/mzs1.4.1/app2mzs.plsdl/zuseutilapp2mzs.wsdl create mode 100644 src/main/resources/mzs1.4.1/app2mzs.wsdl create mode 100644 src/main/resources/mzs1.4.1/app2mzs.xsd create mode 100644 src/main/resources/mzs1.4.1/mzs_mypersondata_en.xsd create mode 100644 src/main/resources/mzs1.4.1/zuse2app.plsdl/zusemsgzuse2app.wsdl create mode 100644 src/main/resources/mzs1.4.1/zuse2app.plsdl/zuseserverzuse2app.wsdl create mode 100644 src/main/resources/mzs1.4.1/zuse2app.plsdl/zusespocszuse2app.wsdl create mode 100644 src/main/resources/mzs1.5.3.rc1/app2mzs.wsdl create mode 100644 src/main/resources/mzs1.5.3.rc1/app2mzs.xsd create mode 100644 src/main/resources/mzs1.5.3.rc1/mzs_mypersondata_en.xsd create mode 100644 src/main/resources/zuseutils/app2mzs.wsdl create mode 100644 src/main/resources/zuseutils/app2mzs.xsd create mode 100644 src/main/resources/zuseutils/mzs_mypersondata_en.xsd diff --git a/pom.xml b/pom.xml new file mode 100644 index 0000000..aa08262 --- /dev/null +++ b/pom.xml @@ -0,0 +1,90 @@ + + + 4.0.0 + + egiz.gv.at + moa-zs + 2.0.0 + war + + Moa ZS + Moa ZS + + + org.springframework.boot + spring-boot-starter-parent + 2.1.3.RELEASE + + + + 11 + 3.3.0 + 2.1.3.RELEASE + + + + + + org.springframework.boot + spring-boot-starter-test + ${springboot.version} + test + + + + org.apache.cxf + cxf-spring-boot-starter-jaxws + ${cxf.version} + + + + + javax.xml.ws + jaxws-api + 2.3.1 + + + + javax.jws + javax.jws-api + 1.1 + + + + + + + + + org.springframework.boot + spring-boot-maven-plugin + ${springboot.version} + + + + org.apache.cxf + cxf-codegen-plugin + ${cxf.version} + + + generate-sources + generate-sources + + ${project.build.directory}/generated-sources/cxf + + + ${project.basedir}/src/main/resources/mzs1.5.3.rc1/app2mzs.wsdl + classpath:wsdl/app2mzs.wsdl + + + + + wsdl2java + + + + + + + diff --git a/src/main/resources/mzs1.4.1/app2mzs.plsdl/egovutilsapp2mzs.wsdl b/src/main/resources/mzs1.4.1/app2mzs.plsdl/egovutilsapp2mzs.wsdl new file mode 100644 index 0000000..a0a0c33 --- /dev/null +++ b/src/main/resources/mzs1.4.1/app2mzs.plsdl/egovutilsapp2mzs.wsdl @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/mzs1.4.1/app2mzs.plsdl/zusemsgapp2zuse.wsdl b/src/main/resources/mzs1.4.1/app2mzs.plsdl/zusemsgapp2zuse.wsdl new file mode 100644 index 0000000..2982d65 --- /dev/null +++ b/src/main/resources/mzs1.4.1/app2mzs.plsdl/zusemsgapp2zuse.wsdl @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/mzs1.4.1/app2mzs.plsdl/zuseserverapp2zuse.wsdl b/src/main/resources/mzs1.4.1/app2mzs.plsdl/zuseserverapp2zuse.wsdl new file mode 100644 index 0000000..a87dba1 --- /dev/null +++ b/src/main/resources/mzs1.4.1/app2mzs.plsdl/zuseserverapp2zuse.wsdl @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/mzs1.4.1/app2mzs.plsdl/zusespocsapp2zuse.wsdl b/src/main/resources/mzs1.4.1/app2mzs.plsdl/zusespocsapp2zuse.wsdl new file mode 100644 index 0000000..7f57c66 --- /dev/null +++ b/src/main/resources/mzs1.4.1/app2mzs.plsdl/zusespocsapp2zuse.wsdl @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/mzs1.4.1/app2mzs.plsdl/zuseutilapp2mzs.wsdl b/src/main/resources/mzs1.4.1/app2mzs.plsdl/zuseutilapp2mzs.wsdl new file mode 100644 index 0000000..1667809 --- /dev/null +++ b/src/main/resources/mzs1.4.1/app2mzs.plsdl/zuseutilapp2mzs.wsdl @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/mzs1.4.1/app2mzs.wsdl b/src/main/resources/mzs1.4.1/app2mzs.wsdl new file mode 100644 index 0000000..25f9502 --- /dev/null +++ b/src/main/resources/mzs1.4.1/app2mzs.wsdl @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/mzs1.4.1/app2mzs.xsd b/src/main/resources/mzs1.4.1/app2mzs.xsd new file mode 100644 index 0000000..3a90515 --- /dev/null +++ b/src/main/resources/mzs1.4.1/app2mzs.xsd @@ -0,0 +1,342 @@ + + + + + + + + + + + + Falls angegeben, wird keine Zustellkopfabfrage durchgeführt. + + + + + + + + + + + Alle weiteren Daten sind im Konfigurationsprofil gespeichert + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + fuer Signatur mit MOA-SS + + + + + + + + + + + + + + + + RSa oder non-RSa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Optional mail body + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + URL fuer Callback Attachment + + + + + + + + + + + + + + + + + + + + + + + + DeliveryConfirmation Base64 encoded + + + + + + + + + asynchronous communication moazs2app + + + + + + + + + + + + + Webservice Response of ZSDeliveryNotification + + + + + + + + + + + + + + + + + + + + + + + Zustellstück was successfully delivered to MOA-ZS + + + + + + + + + + Delivery Information was successfully delivered to MOA-ZS, Attachements will be loaded + + + + + + + + + + Delivery to MOA-ZS failed, or there was an error in processing + + + + + + + + + + + download of callback attachment failed + + + + + + + + + Zustellstück was successfully forwarded to the Zustellserver + + + + + + + + + + + + + + + + + abstract message type + + + + + + + diff --git a/src/main/resources/mzs1.4.1/mzs_mypersondata_en.xsd b/src/main/resources/mzs1.4.1/mzs_mypersondata_en.xsd new file mode 100644 index 0000000..bc48eb9 --- /dev/null +++ b/src/main/resources/mzs1.4.1/mzs_mypersondata_en.xsd @@ -0,0 +1,267 @@ + + + + + + This version of person deploys only global elements. All types derived from abstract types have been replaced by substitution groups + + + + + dummy abstract Peson Data element needed for bi-lingual schema (substitution groups) + + + + + element of signed person datastructure type + + + + + + + + element of physical person type, dreived from Person (abstract) + + + + + element of corporate body type, derived from Person + + + + + data related to the person's name + + + + + date of birth, compare Geburtsdatum + + + + + + + Postal or ZMR Address, compare PostAdresse + + + + + element of internet address type + + + + + element of TelephoneAddressType, compare TelefonAdresse + + + + + + Complete Number ready formated, spaces are meaningless, e.g. +43 1 524 123 456 + + + + + + signed person datastructure. The first Identification elements (from the base type) denote the record as such (e.g. database key for this record) - not to be mistaken for identifiers of the person or of an address (they have their own Identification elements). + + + + + + + + + unique identifier + + + + + actual value of the identifier. + + + + + + + + + + + + type of valueas a urn e.g. urn:publicid:gv.at:cdid+ZS + + + + + + + + + main structure of person data + + + + + bPK, ZbPK, vZbPK goes here + + + + + + + + + physical person + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + juridical person, organisation + + + + + + + name of corporate body (whole name), compare VollerName + + + + + part of an organisation, see also X.500 ou (eg departement, section, branch, ...) , compare Organisation + + + + + + + + + main structure of address data + + + + + + + + + + + Code for the country, use ISO or internatinal Postalstandard, compare Staatscode + + + + + + + + + + ZIP, compare Postleitzahl + + + + + compare Gemeinde + + + + + + + + + + Stiege oder näheren Bezeichnung wie z.b. Werkstatt + + + + + + + + + + + + + + + + + + internet based communication + + + + + + + URI: email-Address, Web, FTP, LDAP, ..., comapre Adress + + + + + + + + + phone numbers + + + + + + + phonenumber + + + + + + + + + + simple type for dates (union), which may omit day and/or month + + + + diff --git a/src/main/resources/mzs1.4.1/zuse2app.plsdl/zusemsgzuse2app.wsdl b/src/main/resources/mzs1.4.1/zuse2app.plsdl/zusemsgzuse2app.wsdl new file mode 100644 index 0000000..4ab2112 --- /dev/null +++ b/src/main/resources/mzs1.4.1/zuse2app.plsdl/zusemsgzuse2app.wsdl @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/mzs1.4.1/zuse2app.plsdl/zuseserverzuse2app.wsdl b/src/main/resources/mzs1.4.1/zuse2app.plsdl/zuseserverzuse2app.wsdl new file mode 100644 index 0000000..4ab2112 --- /dev/null +++ b/src/main/resources/mzs1.4.1/zuse2app.plsdl/zuseserverzuse2app.wsdl @@ -0,0 +1,69 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/mzs1.4.1/zuse2app.plsdl/zusespocszuse2app.wsdl b/src/main/resources/mzs1.4.1/zuse2app.plsdl/zusespocszuse2app.wsdl new file mode 100644 index 0000000..fe8bad6 --- /dev/null +++ b/src/main/resources/mzs1.4.1/zuse2app.plsdl/zusespocszuse2app.wsdl @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/mzs1.5.3.rc1/app2mzs.wsdl b/src/main/resources/mzs1.5.3.rc1/app2mzs.wsdl new file mode 100644 index 0000000..ad6b5d3 --- /dev/null +++ b/src/main/resources/mzs1.5.3.rc1/app2mzs.wsdl @@ -0,0 +1,54 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/mzs1.5.3.rc1/app2mzs.xsd b/src/main/resources/mzs1.5.3.rc1/app2mzs.xsd new file mode 100644 index 0000000..3a90515 --- /dev/null +++ b/src/main/resources/mzs1.5.3.rc1/app2mzs.xsd @@ -0,0 +1,342 @@ + + + + + + + + + + + + Falls angegeben, wird keine Zustellkopfabfrage durchgeführt. + + + + + + + + + + + Alle weiteren Daten sind im Konfigurationsprofil gespeichert + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + fuer Signatur mit MOA-SS + + + + + + + + + + + + + + + + RSa oder non-RSa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Optional mail body + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + URL fuer Callback Attachment + + + + + + + + + + + + + + + + + + + + + + + + DeliveryConfirmation Base64 encoded + + + + + + + + + asynchronous communication moazs2app + + + + + + + + + + + + + Webservice Response of ZSDeliveryNotification + + + + + + + + + + + + + + + + + + + + + + + Zustellstück was successfully delivered to MOA-ZS + + + + + + + + + + Delivery Information was successfully delivered to MOA-ZS, Attachements will be loaded + + + + + + + + + + Delivery to MOA-ZS failed, or there was an error in processing + + + + + + + + + + + download of callback attachment failed + + + + + + + + + Zustellstück was successfully forwarded to the Zustellserver + + + + + + + + + + + + + + + + + abstract message type + + + + + + + diff --git a/src/main/resources/mzs1.5.3.rc1/mzs_mypersondata_en.xsd b/src/main/resources/mzs1.5.3.rc1/mzs_mypersondata_en.xsd new file mode 100644 index 0000000..bc48eb9 --- /dev/null +++ b/src/main/resources/mzs1.5.3.rc1/mzs_mypersondata_en.xsd @@ -0,0 +1,267 @@ + + + + + + This version of person deploys only global elements. All types derived from abstract types have been replaced by substitution groups + + + + + dummy abstract Peson Data element needed for bi-lingual schema (substitution groups) + + + + + element of signed person datastructure type + + + + + + + + element of physical person type, dreived from Person (abstract) + + + + + element of corporate body type, derived from Person + + + + + data related to the person's name + + + + + date of birth, compare Geburtsdatum + + + + + + + Postal or ZMR Address, compare PostAdresse + + + + + element of internet address type + + + + + element of TelephoneAddressType, compare TelefonAdresse + + + + + + Complete Number ready formated, spaces are meaningless, e.g. +43 1 524 123 456 + + + + + + signed person datastructure. The first Identification elements (from the base type) denote the record as such (e.g. database key for this record) - not to be mistaken for identifiers of the person or of an address (they have their own Identification elements). + + + + + + + + + unique identifier + + + + + actual value of the identifier. + + + + + + + + + + + + type of valueas a urn e.g. urn:publicid:gv.at:cdid+ZS + + + + + + + + + main structure of person data + + + + + bPK, ZbPK, vZbPK goes here + + + + + + + + + physical person + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + juridical person, organisation + + + + + + + name of corporate body (whole name), compare VollerName + + + + + part of an organisation, see also X.500 ou (eg departement, section, branch, ...) , compare Organisation + + + + + + + + + main structure of address data + + + + + + + + + + + Code for the country, use ISO or internatinal Postalstandard, compare Staatscode + + + + + + + + + + ZIP, compare Postleitzahl + + + + + compare Gemeinde + + + + + + + + + + Stiege oder näheren Bezeichnung wie z.b. Werkstatt + + + + + + + + + + + + + + + + + + internet based communication + + + + + + + URI: email-Address, Web, FTP, LDAP, ..., comapre Adress + + + + + + + + + phone numbers + + + + + + + phonenumber + + + + + + + + + + simple type for dates (union), which may omit day and/or month + + + + diff --git a/src/main/resources/zuseutils/app2mzs.wsdl b/src/main/resources/zuseutils/app2mzs.wsdl new file mode 100644 index 0000000..e3a7b6a --- /dev/null +++ b/src/main/resources/zuseutils/app2mzs.wsdl @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/zuseutils/app2mzs.xsd b/src/main/resources/zuseutils/app2mzs.xsd new file mode 100644 index 0000000..b15d375 --- /dev/null +++ b/src/main/resources/zuseutils/app2mzs.xsd @@ -0,0 +1,307 @@ + + + + + + + + + + + + Falls angegeben, wird keine Zustellkopfabfrage durchgeführt. + + + + + + + + + + + Alle weiteren Daten sind im Konfigurationsprofil gespeichert + + + + + + + + + + + + + + + + + + fuer Signatur mit MOA-SS + + + + + + + + + + + + + + RSa oder non-RSa + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Optional mail body + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + URL fuer Callback Attachment + + + + + + + + + + + + + + + + + + + + + + + + + + + + asynchronous communication moazs2app + + + + + + + + + + + + Webservice Response of ZSDeliveryNotification + + + + + + + + + + + + + + + + + + + + + + + Zustellstück was successfully delivered to MOA-ZS + + + + + + + + + + Delivery Information was successfully delivered to MOA-ZS, Attachements will be loaded + + + + + + + + + + Delivery to MOA-ZS failed, or there was an error in processing + + + + + + + + + + + download of callback attachment failed + + + + + + + + + Zustellstück was successfully forwarded to the Zustellserver + + + + + + + + + + + + + + + + + abstract message type + + + + + + + diff --git a/src/main/resources/zuseutils/mzs_mypersondata_en.xsd b/src/main/resources/zuseutils/mzs_mypersondata_en.xsd new file mode 100644 index 0000000..bc48eb9 --- /dev/null +++ b/src/main/resources/zuseutils/mzs_mypersondata_en.xsd @@ -0,0 +1,267 @@ + + + + + + This version of person deploys only global elements. All types derived from abstract types have been replaced by substitution groups + + + + + dummy abstract Peson Data element needed for bi-lingual schema (substitution groups) + + + + + element of signed person datastructure type + + + + + + + + element of physical person type, dreived from Person (abstract) + + + + + element of corporate body type, derived from Person + + + + + data related to the person's name + + + + + date of birth, compare Geburtsdatum + + + + + + + Postal or ZMR Address, compare PostAdresse + + + + + element of internet address type + + + + + element of TelephoneAddressType, compare TelefonAdresse + + + + + + Complete Number ready formated, spaces are meaningless, e.g. +43 1 524 123 456 + + + + + + signed person datastructure. The first Identification elements (from the base type) denote the record as such (e.g. database key for this record) - not to be mistaken for identifiers of the person or of an address (they have their own Identification elements). + + + + + + + + + unique identifier + + + + + actual value of the identifier. + + + + + + + + + + + + type of valueas a urn e.g. urn:publicid:gv.at:cdid+ZS + + + + + + + + + main structure of person data + + + + + bPK, ZbPK, vZbPK goes here + + + + + + + + + physical person + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + juridical person, organisation + + + + + + + name of corporate body (whole name), compare VollerName + + + + + part of an organisation, see also X.500 ou (eg departement, section, branch, ...) , compare Organisation + + + + + + + + + main structure of address data + + + + + + + + + + + Code for the country, use ISO or internatinal Postalstandard, compare Staatscode + + + + + + + + + + ZIP, compare Postleitzahl + + + + + compare Gemeinde + + + + + + + + + + Stiege oder näheren Bezeichnung wie z.b. Werkstatt + + + + + + + + + + + + + + + + + + internet based communication + + + + + + + URI: email-Address, Web, FTP, LDAP, ..., comapre Adress + + + + + + + + + phone numbers + + + + + + + phonenumber + + + + + + + + + + simple type for dates (union), which may omit day and/or month + + + + -- cgit v1.2.3