Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
grouper/test-compose/scim/container_files/web.xml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
30 lines (26 sloc)
928 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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"> | |
<security-constraint> | |
<web-resource-collection> | |
<web-resource-name>Web services</web-resource-name> | |
<url-pattern>/*</url-pattern> | |
</web-resource-collection> | |
<auth-constraint> | |
<role-name>*</role-name> | |
</auth-constraint> | |
</security-constraint> | |
<!-- Define the Login Configuration for this Application --> | |
<login-config> | |
<auth-method>BASIC</auth-method> | |
<realm-name>Grouper Application</realm-name> | |
</login-config> | |
<!-- Security roles referenced by this web application --> | |
<security-role> | |
<description> | |
The role that is required to log in to web service | |
</description> | |
<role-name>*</role-name> | |
</security-role> | |
</web-app> |