mirror of
https://github.com/apache/struts.git
synced 2026-08-11 09:36:57 +00:00
266a553f5d
Reverted the license headers in sample apps code. I left only in pom.xml files and in Java code. git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@564339 13f79535-47bb-0310-9956-ffa450edef68
48 lines
1.5 KiB
XML
48 lines
1.5 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<!DOCTYPE struts PUBLIC
|
|
"-//Apache Software Foundation//DTD Struts Configuration 2.0//EN"
|
|
"http://struts.apache.org/dtds/struts-2.0.dtd">
|
|
|
|
<struts>
|
|
|
|
<package name="mailreader-default" namespace="/" extends="struts-default">
|
|
|
|
<interceptors>
|
|
|
|
<interceptor name="authentication"
|
|
class="mailreader2.AuthenticationInterceptor"/>
|
|
|
|
<interceptor-stack name="user" >
|
|
<interceptor-ref name="authentication" />
|
|
<interceptor-ref name="defaultStack"/>
|
|
</interceptor-stack>
|
|
|
|
<interceptor-stack name="user-submit" >
|
|
<interceptor-ref name="tokenSession" />
|
|
<interceptor-ref name="user"/>
|
|
</interceptor-stack>
|
|
|
|
<interceptor-stack name="guest" >
|
|
<interceptor-ref name="defaultStack"/>
|
|
</interceptor-stack>
|
|
|
|
</interceptors>
|
|
|
|
<default-interceptor-ref name="user"/>
|
|
|
|
<global-results>
|
|
<result name="error">/pages/Error.jsp</result>
|
|
<result name="invalid.token">/pages/Error.jsp</result>
|
|
<result name="login" type="redirectAction">Login_input</result>
|
|
</global-results>
|
|
|
|
<global-exception-mappings>
|
|
<exception-mapping
|
|
result="error"
|
|
exception="java.lang.Throwable"/>
|
|
</global-exception-mappings>
|
|
|
|
</package>
|
|
|
|
</struts>
|