BeforeResult Annotation
Marks a action method that needs to be executed before the result. Return value is ignored.
Usage
The BeforeResult annotation can be applied at method level.
Parameters
no parameters
Examples
public class SampleAction extends ActionSupport {
@BeforeResult
public void isValid() throws ValidationException {
}
public String execute() {
return SUCCESS;
}
}