This project has retired. For details please refer to its
        
        Attic page .
      
JetspeedSessionValidator (Jetspeed 1 Enterprise Portal 1.6 API)
 
org.apache.jetspeed.modules.actions 
 
java.lang.Object
  org.apache.jetspeed.modules.actions.TemplateSessionValidator 
                  org.apache.jetspeed.modules.actions.JetspeedSessionValidator 
 
public class JetspeedSessionValidator extends TemplateSessionValidator    
Just like org.apache.turbine.modules.actions.sessionvalidator.TemplateSessionValidator except:
 it doesn't check the session_access_counter
  it doesn't require you to always logon
  expects a JetspeedRunData object and put there the additionnal jetspeed
  properties
  
Version: $Id: JetspeedSessionValidator.java,v 1.28 2005/03/21 18:21:36 sgala Exp $ 
Author: Ingo Schuster , Raphaël Luta , Santiago Gala See Also: TemplateSessionValidator 
 
Method Summary   
 void doPerform  
 boolean requiresNewSession  
 
Methods inherited from class org.apache.turbine.modules.Action  
perform 
 
Methods inherited from class java.lang.Object  
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait 
 
JetspeedSessionValidator 
public JetspeedSessionValidator () 
 
doPerform 
public void doPerform (org.apache.turbine.util.RunData data)
               throws java.lang.Exception 
Execute the action.
Overrides: doPerform TemplateSessionValidator  
Parameters: data - Turbine information.
Throws: 
Exception, - a generic exception.
java.lang.Exception 
  
requiresNewSession 
public boolean requiresNewSession (org.apache.turbine.util.RunData data) 
Description copied from class: TemplateSessionValidator  By default, this is true. It says that we require a new session
 in order to allow people to access the system. We accomplish
 this by doing a redirect and using the HttpSession spec.
Overrides: requiresNewSession TemplateSessionValidator  
Parameters: data - Turbine information.
Returns: True if we require a new session in order to allow
 people to access the system.