Before Annotation
Marks a action method that needs to be executed before the main action method.
Usage
The Before annotation can be applied at method level.
Parameters
no parameters
Examples
public class SampleAction extends ActionSupport {
@Before
public void isAuthorized() throws AuthenticationException {
}
public String execute() {
return SUCCESS;
}
}