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