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">
|
2013-08-02 11:35:08 +00:00
|
|
|
|
|
|
|
<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>
|
|
|
|
<!--
|
|
|
|
<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>
|