From b73bb6316337f00752b59850f4aa3fcde22de137 Mon Sep 17 00:00:00 2001 From: ulrich@undisclosed Date: Fri, 08 May 2020 17:46:05 +0000 Subject: [PATCH] ui2 nutzerliste entwurf --- web/WEB-INF/web.xml | 29 +++++++++++++++++++++++++++++ 1 files changed, 29 insertions(+), 0 deletions(-) diff --git a/web/WEB-INF/web.xml b/web/WEB-INF/web.xml index 6f037ac..dbc02c1 100644 --- a/web/WEB-INF/web.xml +++ b/web/WEB-INF/web.xml @@ -37,6 +37,14 @@ <param-value>de.uhilger.um.pub</param-value> </init-param> </servlet> + <servlet> + <servlet-name>ProfilDienst</servlet-name> + <servlet-class>de.uhilger.transit.web.TransitServlet</servlet-class> + <init-param> + <param-name>klassen</param-name> + <param-value>de.uhilger.um.api.Profil</param-value> + </init-param> + </servlet> <servlet-mapping> <servlet-name>TransitServlet</servlet-name> <url-pattern>/api</url-pattern> @@ -44,6 +52,10 @@ <servlet-mapping> <servlet-name>PublicTransit</servlet-name> <url-pattern>/pub</url-pattern> + </servlet-mapping> + <servlet-mapping> + <servlet-name>ProfilDienst</servlet-name> + <url-pattern>/prf</url-pattern> </servlet-mapping> <session-config> <session-timeout> @@ -64,6 +76,19 @@ <role-name>nutzerAdmin</role-name> </auth-constraint> </security-constraint> + <security-constraint> + <display-name>nutzerProfilConstraint</display-name> + <web-resource-collection> + <web-resource-name>nutzerProfil</web-resource-name> + <description>Nutzerprofil</description> + <url-pattern>/prf/*</url-pattern> + <url-pattern>/profil/*</url-pattern> + </web-resource-collection> + <auth-constraint> + <description>nutzerProfilAuthContraint</description> + <role-name>nutzerProfil</role-name> + </auth-constraint> + </security-constraint> <login-config> <auth-method>FORM</auth-method> <form-login-config> @@ -75,4 +100,8 @@ <description/> <role-name>nutzerAdmin</role-name> </security-role> + <security-role> + <description/> + <role-name>nutzerProfil</role-name> + </security-role> </web-app> -- Gitblit v1.9.3