29 lines
903 B
XML
Executable file
29 lines
903 B
XML
Executable file
<?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>
|
|
|
|
<listener>
|
|
<listener-class>org.keycloak.example.oauth.Bootstrap</listener-class>
|
|
</listener>
|
|
|
|
<error-page>
|
|
<exception-type>java.lang.RuntimeException</exception-type>
|
|
<location>/error.jsp</location>
|
|
</error-page>
|
|
|
|
<!--
|
|
<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>
|