Class ControllerFilterAdapter
java.lang.Object
org.javalite.activeweb.controller_filters.ControllerFilterAdapter
- All Implemented Interfaces:
ControllerFilter
This is a convenience class for filters to extend. It provides no-op methods already implemented
from
ControllerFilter.- Author:
- Igor Polevoy
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidafter()Called by framework after executing a controllervoidbefore()Called by framework before executing a controllervoidonException(Exception e)Called by framework in case there was an exception inside a controller
-
Constructor Details
-
ControllerFilterAdapter
public ControllerFilterAdapter()
-
-
Method Details
-
before
public void before()Description copied from interface:ControllerFilterCalled by framework before executing a controller- Specified by:
beforein interfaceControllerFilter
-
after
public void after()Description copied from interface:ControllerFilterCalled by framework after executing a controller- Specified by:
afterin interfaceControllerFilter
-
onException
Description copied from interface:ControllerFilterCalled by framework in case there was an exception inside a controller- Specified by:
onExceptionin interfaceControllerFilter- Parameters:
e- exception.
-