diff options
author | Thomas Lenz <tlenz@iaik.tugraz.at> | 2020-07-07 15:27:03 +0200 |
---|---|---|
committer | Thomas Lenz <tlenz@iaik.tugraz.at> | 2020-07-07 15:27:03 +0200 |
commit | e9fa374738cf1bbc84b36c50bba898892d2c1688 (patch) | |
tree | a9a26d836f94a6e3cded80030aa6a1b411a0aab8 /id/server/modules/moa-id-module-E-ID_connector/src/main/resources | |
parent | a056118bbfabb53dc2856ff07d068cd57ddc8be3 (diff) | |
parent | 0e6a03ffbc11d07ee2d00abcd573239a971f89b5 (diff) | |
download | moa-id-spss-e9fa374738cf1bbc84b36c50bba898892d2c1688.tar.gz moa-id-spss-e9fa374738cf1bbc84b36c50bba898892d2c1688.tar.bz2 moa-id-spss-e9fa374738cf1bbc84b36c50bba898892d2c1688.zip |
Merge branch 'development_preview'
Diffstat (limited to 'id/server/modules/moa-id-module-E-ID_connector/src/main/resources')
2 files changed, 48 insertions, 1 deletions
diff --git a/id/server/modules/moa-id-module-E-ID_connector/src/main/resources/moaid_EID_connector.beans.xml b/id/server/modules/moa-id-module-E-ID_connector/src/main/resources/moaid_EID_connector.beans.xml index d5d255680..f357374cb 100644 --- a/id/server/modules/moa-id-module-E-ID_connector/src/main/resources/moaid_EID_connector.beans.xml +++ b/id/server/modules/moa-id-module-E-ID_connector/src/main/resources/moaid_EID_connector.beans.xml @@ -14,8 +14,11 @@ <bean id="EidAuthCredentialProvider" class="at.gv.egovernment.moa.id.auth.modules.eidproxyauth.utils.EIDAuthCredentialProvider"/> + <bean id="appRegIdGenerationController" + class="at.gv.egovernment.moa.id.auth.modules.eidproxyauth.controller.EidAppRegIdentifierGenerationController" /> + <bean id="EidAuthMetadataController" - class="at.gv.egovernment.moa.id.auth.modules.eidproxyauth.controller.EIDAuthMetadataController"/> + class="at.gv.egovernment.moa.id.auth.modules.eidproxyauth.controller.EIDAuthMetadataController"/> <bean id="EidAuthModuleImpl" class="at.gv.egovernment.moa.id.auth.modules.eidproxyauth.EIDProxyAuthModuleImpl"> diff --git a/id/server/modules/moa-id-module-E-ID_connector/src/main/resources/templates/appreg_id_generator.html b/id/server/modules/moa-id-module-E-ID_connector/src/main/resources/templates/appreg_id_generator.html new file mode 100644 index 000000000..d214d7663 --- /dev/null +++ b/id/server/modules/moa-id-module-E-ID_connector/src/main/resources/templates/appreg_id_generator.html @@ -0,0 +1,44 @@ +<!DOCTYPE html> +<html> +<head> + <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> + <!-- MOA-ID 2.x BKUSelection Layout CSS --> + <link rel="stylesheet" href="$contextPath/css/buildCSS" /> + + <title>Application Id for Application-Register </title> +</head> + + +<body> + <div id="page"> + + <div id="page1" class="case selected-case" role="main"> + + <div id="main"> + + <div id="leftcontent" class="hell"> + <div id="bku_header" class="dunkel"> + <h2 id="tabheader" class="dunkel" role="heading"> + Unique Identifier for Application-Register registration: + </h2> + </div> + + #if($error) + <div> + <p><b>Error:</b> $error</p> + </div> + #end + + #if($appregId) + <div id="selectArea" class="hell" role="application"> + <p><b>Unique AppReg Id:</b> $appregId</p> + </div> + #end + + </div> + + </div> + </div> + </div> +</body> +</html> |