Apache Struts 2 Documentation > Home > Guides > Core Developers Guide > Annotations > InputConfig Annotation
Added by Musachy Barroso, last edited by Musachy Barroso on Dec 20, 2008

InputConfig Annotation

Marks a action method that if it's not validated by ValidationInterceptor then execute input method or input result.

Usage

The InputConfig annotation can be applied at method level.

Parameters

Parameter Required Default Notes
methodName no execute this method if specific
resultName no return this result if methodName not specific

Examples

public class SampleAction extends ActionSupport {

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

 @InputConfig(methodName="input")
 public String execute() {
    // perform action
    return SUCCESS;
 }
 public String input() {
    // perform some data filling
    return INPUT;
 }
}