/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package actions; import com.opensymphony.xwork2.ActionSupport; /** * * @author Nitin */ public class HelloWorldController {//extends ActionSupport { private String message; public String getMessage() { return message; } public String execute() { System.out.println("Action Executed"); message = "duniya"; // return SUCCESS; return "success"; } }