| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"> |
| | | <description>Nutzerverwaltung</description> |
| | | <display-name>Nutzerverwaltung</display-name> |
| | | <context-param> |
| | | <param-name>dsname</param-name> |
| | |
| | | <url-pattern>/svc/*</url-pattern> |
| | | </filter-mapping> |
| | | <listener> |
| | | <listener-class>de.uhilger.um.App</listener-class> |
| | | <listener-class>de.uhilger.um.web.Initialiser</listener-class> |
| | | </listener> |
| | | <servlet> |
| | | <servlet-name>TransitServlet</servlet-name> |
| | |
| | | <param-value>de.uhilger.um.api</param-value> |
| | | </init-param> |
| | | </servlet> |
| | | <servlet> |
| | | <servlet-name>TestServlet</servlet-name> |
| | | <jsp-file>/show.jsp</jsp-file> |
| | | </servlet> |
| | | <servlet-mapping> |
| | | <servlet-name>TransitServlet</servlet-name> |
| | | <url-pattern>/api</url-pattern> |
| | | </servlet-mapping> |
| | | <servlet-mapping> |
| | | <servlet-name>TestServlet</servlet-name> |
| | | <url-pattern>/test/*</url-pattern> |
| | | </servlet-mapping> |
| | | <session-config> |
| | | <session-timeout> |
| | | 30 |
| | | </session-timeout> |
| | | </session-config> |
| | | <security-constraint> |
| | | <display-name>nutzerAdminConstraint</display-name> |
| | | <web-resource-collection> |
| | | <web-resource-name>nutzerAdmin</web-resource-name> |
| | | <description>Nutzer-Administration</description> |
| | | <url-pattern>/ui/*</url-pattern> |
| | | <url-pattern>/svc/*</url-pattern> |
| | | <url-pattern>/api/*</url-pattern> |
| | | </web-resource-collection> |
| | | <auth-constraint> |
| | | <description>nutzerAdminAuthContraint</description> |
| | | <role-name>nutzerAdmin</role-name> |
| | | </auth-constraint> |
| | | </security-constraint> |
| | | <login-config> |
| | | <auth-method>FORM</auth-method> |
| | | <form-login-config> |
| | | <form-login-page>/login_form.html</form-login-page> |
| | | <form-error-page>/login_error.jsp</form-error-page> |
| | | </form-login-config> |
| | | </login-config> |
| | | <security-role> |
| | | <description/> |
| | | <role-name>nutzerAdmin</role-name> |
| | | </security-role> |
| | | </web-app> |