|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |
@Retention(value=RUNTIME) @Target(value=METHOD) public @interface BeforeResult
Marks a action method that needs to be executed before the result. Return value is ignored.
Annotation usage: The BeforeResult annotation can be applied at method level. Annotation parameters:Parameter | Required | Default | Notes |
---|---|---|---|
priority | no | 10 | Priority order of method execution |
public class SampleAction extends ActionSupport { @BeforeResult public void isValid() throws ValidationException { // validate model object, throw exception if failed } public String execute() { // perform action return SUCCESS; } }
Optional Element Summary | |
---|---|
int |
priority
|
public abstract int priority
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: REQUIRED | OPTIONAL | DETAIL: ELEMENT |