Dashboard > WebWork > ... > J2SE 5 Support > Before Annotation
  WebWork Log In View a printable version of the current page.  
  Before Annotation
Added by Rainer Hermanns, last edited by Kevin Shin on Mar 07, 2007  (view change)
Labels: 
(None)

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 {
   // authorize request, throw exception if failed
 }

 public String execute() {
    // perform secure 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