/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package actions; import com.opensymphony.xwork2.ActionSupport; /** * * @author XCoder */ public class DetailAction extends ActionSupport { private Integer id; public Integer getId() { return id; } public void setId(Integer id) { this.id = id; } public String execute() { System.out.println("in DetailAction " + id); return SUCCESS; } }