org.apache.struts2.interceptor
Class ClearSessionInterceptor

java.lang.Object
  extended by com.opensymphony.xwork2.interceptor.AbstractInterceptor
      extended by org.apache.struts2.interceptor.ClearSessionInterceptor
All Implemented Interfaces:
Interceptor, Serializable

public class ClearSessionInterceptor
extends AbstractInterceptor

This interceptor clears the HttpSession.

Interceptor parameters:

Example:
 

 <action name="exampleAction" class="com.examples.ExampleAction">
     <interceptor-ref name="clearSession"/>
     <interceptor-ref name="defaultStack"/>
     <result name="success">example.jsp</result>
 </action>

 
 

See Also:
Serialized Form

Constructor Summary
ClearSessionInterceptor()
           
 
Method Summary
 String intercept(ActionInvocation invocation)
           
 
Methods inherited from class com.opensymphony.xwork2.interceptor.AbstractInterceptor
destroy, init
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ClearSessionInterceptor

public ClearSessionInterceptor()
Method Detail

intercept

public String intercept(ActionInvocation invocation)
                 throws Exception
Specified by:
intercept in interface Interceptor
Specified by:
intercept in class AbstractInterceptor
Throws:
Exception


Copyright © 2000-2012 Apache Software Foundation. All Rights Reserved.