blob: 1ccc59269c9b4f4fd79d0783274b5a3b03fdcd2c [file]
package survey;
import java.util.Date;
import com.opensymphony.xwork2.ActionSupport;
/**
* Simple Survey Action.
*/
public class SurveyAction extends ActionSupport {
private SurveyBean surveyBean = new SurveyBean();
public String edit() {
surveyBean.setAge(22);
surveyBean.setFirstName("Lex");
surveyBean.setLastName("Luthor");
surveyBean.setBirthdate(new Date());
return SUCCESS;
}
public String save() {
return SUCCESS;
}
public SurveyBean getSurveyBean() {
return surveyBean;
}
public void setSurveyBean(SurveyBean surveyBean) {
this.surveyBean = surveyBean;
}
}