blob: 73bae87fe313fcc718507cce431efbaeffe6efe6 [file] [log] [blame]
import com.opensymphony.xwork2.ActionSupport;
/**
* Example Action class
*/
public class Hello extends ActionSupport {
/**
* An example implementation that does nothing an returns "success".
*
* @return {@link #SUCCESS}
*/
public String execute() throws Exception {
return SUCCESS;
}
}