/*
* 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 MyAction extends ActionSupport {
private String status;
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
public String execute() {
status = "aa";
return SUCCESS;
}
}