Class VelocitySecureAction

  • All Implemented Interfaces:
    Action, Assembler

    public abstract class VelocitySecureAction
    extends VelocityAction
    VelocitySecure action. Always performs a Security Check that you've defined before executing the doPerform(). You should extend this class and add the specific security check needed. If you have a number of actions that need to perform the same check, you could make a base action by extending this class and implementing the isAuthorized(). Then each action that needs to perform the same check could extend your base action.
    Version:
    $Id$
    Author:
    Dave Bryson, Jon S. Stevens, Jason van Zyl, Peter Courcoux
    • Method Detail

      • isAuthorized

        protected abstract boolean isAuthorized​(PipelineData pipelineData)
                                         throws Exception
        Implement this method to perform the security check needed. You should set the template in this method that you want the user to be sent to if they're unauthorized.
        Parameters:
        pipelineData - Turbine information.
        Returns:
        True if the user is authorized to access the screen.
        Throws:
        Exception - a generic exception.