package com.test.web.action;
import com.opensymphony.xwork2.ActionSupport;
public class Test1Action extends ActionSupport {
private String msg;
public String execute() throws Exception {
msg = "Hello World!";
return SUCCESS;
}
public String getMsg() {
return msg;
}
public void setMsg(String msg) {
this.msg = msg;
}
}