keycloak-scim/examples/demo-template/third-party/src/main/webapp/WEB-INF/web.xml

30 lines
903 B
XML
Raw Normal View History

2013-07-29 14:24:15 +00:00
<?xml version="1.0" encoding="UTF-8"?>
<web-app 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"
version="3.0">
<module-name>oauth-client</module-name>
2013-07-29 14:24:15 +00:00
<listener>
2013-12-17 17:07:02 +00:00
<listener-class>org.keycloak.example.oauth.Bootstrap</listener-class>
2013-07-29 14:24:15 +00:00
</listener>
<error-page>
<exception-type>java.lang.RuntimeException</exception-type>
<location>/error.jsp</location>
</error-page>
2013-07-29 14:24:15 +00:00
<!--
<security-constraint>
<web-resource-collection>
<url-pattern>/*</url-pattern>
</web-resource-collection>
<user-data-constraint>
<transport-guarantee>CONFIDENTIAL</transport-guarantee>
</user-data-constraint>
</security-constraint>
-->
</web-app>