Dashboard > XWork > ... > Annotations > After Annotation
  XWork Log In View a printable version of the current page.  
  After Annotation
Added by Rainer Hermanns, last edited by Rainer Hermanns on Dec 01, 2006
Labels: 
(None)

After Annotation

Marks a action method that needs to be called after the main action method and the result was executed. Return value is ignored.

Usage

The After annotation can be applied at method level.

Parameters

Parameter Required Default Notes
priority no 10 Priority order of method execution

Examples

public class SampleAction extends ActionSupport {

 @After
 public void isValid() throws ValidationException {
   // validate model object, throw exception if failed
 }

 public String execute() {
    // perform action
    return SUCCESS;
 }
}

Site powered by a free Open Source Project / Non-profit License (more) of Confluence - the Enterprise wiki.
Learn more or evaluate Confluence for your organisation.
Powered by Atlassian Confluence, the Enterprise Wiki. (Version: 2.2.9 Build:#527 Sep 07, 2006) - Bug/feature request - Contact Administrators