Sha256: 6b63b9a04d2775393d038a3e83b5cdad45309259d6440b9ffc095672cc1f9b38

Contents?: true

Size: 979 Bytes

Versions: 8

Compression:

Stored size: 979 Bytes

Contents

<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_2_5.xsd"
   version="2.5">

  <display-name>JAAS Test</display-name>

  <welcome-file-list>
    <welcome-file>index.html</welcome-file>
  </welcome-file-list>


  <security-constraint>
    <web-resource-collection>
      <web-resource-name>JAAS Role</web-resource-name>
      <url-pattern>/auth.html</url-pattern>
    </web-resource-collection>
    <auth-constraint>
      <role-name>roleA</role-name>
    </auth-constraint>
  </security-constraint>


  <login-config>
    <auth-method>FORM</auth-method>
    <realm-name>Test JAAS Realm</realm-name>
    <form-login-config>
      <form-login-page>
        /login.html
      </form-login-page>
      <form-error-page>
        /authfail.html
      </form-error-page>
    </form-login-config>
  </login-config>
</web-app>

Version data entries

8 entries across 4 versions & 1 rubygems

Version Path
miso-java-0.1.5 jetty/examples/test-jaas-webapp/src/main/webapp/WEB-INF/web.xml
miso-java-0.1.5 jetty/webapps/test-jaas/WEB-INF/web.xml
miso-java-0.1.4 jetty/examples/test-jaas-webapp/src/main/webapp/WEB-INF/web.xml
miso-java-0.1.4 jetty/webapps/test-jaas/WEB-INF/web.xml
miso-java-0.1.3 jetty/examples/test-jaas-webapp/src/main/webapp/WEB-INF/web.xml
miso-java-0.1.3 jetty/webapps/test-jaas/WEB-INF/web.xml
miso-java-0.1.2 jetty/examples/test-jaas-webapp/src/main/webapp/WEB-INF/web.xml
miso-java-0.1.2 jetty/webapps/test-jaas/WEB-INF/web.xml