Class TemplateSecureSessionValidator
- java.lang.Object
-
- org.apache.turbine.modules.actions.sessionvalidator.SessionValidator
-
- org.apache.turbine.modules.actions.sessionvalidator.TemplateSecureSessionValidator
-
public class TemplateSecureSessionValidator extends SessionValidator
SessionValidator that requires login for use with Template Services like Velocity or WebMacro.
Templating services requires a different Session Validator because of the way it handles screens. If you use the WebMacro or Velocity Service with theDefaultSessionValidator
, users will be able to bypass login by directly addressing the template using template/index.wm. This is because the Page class looks for the keyword "template" in the Path information and if it finds it will reset the screen using it's lookup mechanism and thereby bypass Login. Note that you will need to set the template.login property to the login template.- Version:
- $Id$
- Author:
- John D. McNally, Dave Bryson, Henning P. Schmiedehausen, Peter Courcoux
-
-
Field Summary
-
Fields inherited from class org.apache.turbine.modules.actions.sessionvalidator.SessionValidator
screenHomepage, screenInvalidState, security, templateHomepage, templateInvalidState
-
Fields inherited from interface org.apache.turbine.modules.Action
CACHE_SIZE_DEFAULT, CACHE_SIZE_KEY, NAME, PREFIX
-
-
Constructor Summary
Constructors Constructor Description TemplateSecureSessionValidator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
doPerform(PipelineData pipelineData)
doPerform is virtually identical to DefaultSessionValidator except that it calls template methods instead of bare screen methods.-
Methods inherited from class org.apache.turbine.modules.actions.sessionvalidator.SessionValidator
handleFormCounterToken
-
-
-
-
Constructor Detail
-
TemplateSecureSessionValidator
public TemplateSecureSessionValidator()
-
-
Method Detail
-
doPerform
public void doPerform(PipelineData pipelineData) throws Exception
doPerform is virtually identical to DefaultSessionValidator except that it calls template methods instead of bare screen methods. For example, it usessetScreenTemplate
to load the tr.props TEMPLATE_LOGIN instead of the default's setScreen to TurbineConstants.SCREEN_LOGIN.- Parameters:
pipelineData
- Turbine information.- Throws:
Exception
- The anonymous user could not be obtained from the security service- See Also:
DefaultSessionValidator
-
-