diff --git a/perun-oidc-server-webapp/src/main/resources/db/hsql/hsql_database_tables.sql b/perun-oidc-server-webapp/src/main/resources/db/hsql/hsql_database_tables.sql index 2475d8358..1e4c921ce 100644 --- a/perun-oidc-server-webapp/src/main/resources/db/hsql/hsql_database_tables.sql +++ b/perun-oidc-server-webapp/src/main/resources/db/hsql/hsql_database_tables.sql @@ -84,6 +84,7 @@ CREATE TABLE IF NOT EXISTS saved_user_auth ( acr VARCHAR(1024), name VARCHAR(1024), authenticated BOOLEAN, + authentication_attributes VARCHAR(2048) ); CREATE TABLE IF NOT EXISTS saved_user_auth_authority ( diff --git a/perun-oidc-server-webapp/src/main/resources/db/mysql/mysql_database_tables.sql b/perun-oidc-server-webapp/src/main/resources/db/mysql/mysql_database_tables.sql index 6641c04a6..a4a10837c 100644 --- a/perun-oidc-server-webapp/src/main/resources/db/mysql/mysql_database_tables.sql +++ b/perun-oidc-server-webapp/src/main/resources/db/mysql/mysql_database_tables.sql @@ -82,7 +82,8 @@ CREATE TABLE IF NOT EXISTS saved_user_auth ( id BIGINT AUTO_INCREMENT PRIMARY KEY, acr VARCHAR(1024), name VARCHAR(1024), - authenticated BOOLEAN + authenticated BOOLEAN, + authentication_attributes TEXT ); CREATE TABLE IF NOT EXISTS saved_user_auth_authority ( diff --git a/perun-oidc-server-webapp/src/main/resources/db/psql/psql_database_tables.sql b/perun-oidc-server-webapp/src/main/resources/db/psql/psql_database_tables.sql index 74c8c8ffe..7a2c08f85 100644 --- a/perun-oidc-server-webapp/src/main/resources/db/psql/psql_database_tables.sql +++ b/perun-oidc-server-webapp/src/main/resources/db/psql/psql_database_tables.sql @@ -83,7 +83,8 @@ CREATE TABLE IF NOT EXISTS saved_user_auth ( id BIGSERIAL PRIMARY KEY, acr VARCHAR(1024), name VARCHAR(1024), - authenticated BOOLEAN + authenticated BOOLEAN, + authentication_attributes TEXT ); CREATE TABLE IF NOT EXISTS saved_user_auth_authority ( diff --git a/perun-oidc-server-webapp/src/main/webapp/WEB-INF/application-context.xml b/perun-oidc-server-webapp/src/main/webapp/WEB-INF/application-context.xml index c16a9cf0c..d5ef99ee5 100644 --- a/perun-oidc-server-webapp/src/main/webapp/WEB-INF/application-context.xml +++ b/perun-oidc-server-webapp/src/main/webapp/WEB-INF/application-context.xml @@ -17,20 +17,24 @@ limitations under the License. --> + xmlns:mvc="http://www.springframework.org/schema/mvc" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xmlns:tx="http://www.springframework.org/schema/tx" + xmlns:context="http://www.springframework.org/schema/context" + xmlns:security="http://www.springframework.org/schema/security" + xmlns:oauth="http://www.springframework.org/schema/security/oauth2" + xsi:schemaLocation="http://www.springframework.org/schema/security/oauth2 + http://www.springframework.org/schema/security/spring-security-oauth2-2.0.xsd + http://www.springframework.org/schema/mvc + http://www.springframework.org/schema/mvc/spring-mvc-4.3.xsd + http://www.springframework.org/schema/security + http://www.springframework.org/schema/security/spring-security-4.2.xsd + http://www.springframework.org/schema/beans + http://www.springframework.org/schema/beans/spring-beans-4.3.xsd + http://www.springframework.org/schema/tx + http://www.springframework.org/schema/tx/spring-tx-4.3.xsd + http://www.springframework.org/schema/context + http://www.springframework.org/schema/context/spring-context-4.3.xsd"> @@ -57,10 +61,10 @@ + + - - @@ -70,9 +74,26 @@ - + + + + + + + + + + + + + + + + + + - + diff --git a/perun-oidc-server-webapp/src/main/webapp/WEB-INF/tags/actionmenu.tag b/perun-oidc-server-webapp/src/main/webapp/WEB-INF/tags/actionmenu.tag index d391a30ad..7b4bad2fa 100644 --- a/perun-oidc-server-webapp/src/main/webapp/WEB-INF/tags/actionmenu.tag +++ b/perun-oidc-server-webapp/src/main/webapp/WEB-INF/tags/actionmenu.tag @@ -13,8 +13,3 @@
  • -
  • -
  • - -
  • -
  • \ No newline at end of file diff --git a/perun-oidc-server-webapp/src/main/webapp/WEB-INF/tags/sidebar.tag b/perun-oidc-server-webapp/src/main/webapp/WEB-INF/tags/sidebar.tag index 93f78c871..976f564df 100644 --- a/perun-oidc-server-webapp/src/main/webapp/WEB-INF/tags/sidebar.tag +++ b/perun-oidc-server-webapp/src/main/webapp/WEB-INF/tags/sidebar.tag @@ -11,8 +11,3 @@ - -
    - -
    -
    diff --git a/perun-oidc-server-webapp/src/main/webapp/WEB-INF/tags/topbar.tag b/perun-oidc-server-webapp/src/main/webapp/WEB-INF/tags/topbar.tag index 1bce4a1c5..5b83e7b6a 100644 --- a/perun-oidc-server-webapp/src/main/webapp/WEB-INF/tags/topbar.tag +++ b/perun-oidc-server-webapp/src/main/webapp/WEB-INF/tags/topbar.tag @@ -3,29 +3,6 @@ <%@ taglib prefix="security" uri="http://www.springframework.org/security/tags"%> <%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%> <%@ taglib prefix="o" tagdir="/WEB-INF/tags"%> - - - - - - - - - - - - - - - - - - - - - - -