root/lang/java/misc/oauth-filter/webapp/WEB-INF/web.xml @ 36393

Revision 36393, 0.9 kB (checked in by int128, 3 years ago)

Dynamic Web Projectに変換

  • Property svn:mime-type set to text/plain
Line 
1<?xml version="1.0" encoding="UTF-8"?>
2<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
3  <display-name>oauth-filter</display-name>
4
5    <filter>
6        <filter-name>oauth-filter</filter-name>
7        <filter-class>org.hidetake.util.oauth.OAuthValidationFilter</filter-class>
8        <init-param>
9                <param-name>net.oauth.OAuthAccessor</param-name>
10                <param-value>org.hidetake.util.oauth.provider.MixiOAuthAccessor</param-value>
11        </init-param>
12    </filter>
13    <filter-mapping>
14        <filter-name>oauth-filter</filter-name>
15        <url-pattern>/*</url-pattern>
16    </filter-mapping>
17
18</web-app>
Note: See TracBrowser for help on using the browser.