/* * Filename: UpdateItemList.java * Created on: 5 January 2007, 17:03 * @author: Timothy Wonil Lee * @author: $Author$ * @version: $Revision$ * LastModified: $LastChangedDate$ * Location: $HeadURL$ * * Description: * * */ package conversionTest.action; import com.opensymphony.xwork.ActionSupport; import java.util.ArrayList; import java.util.List; public class UpdateItemList extends ActionSupport { private List itemList = new ArrayList(); public String execute() { // does nothing.. just see the result. return SUCCESS; } public List getItemList() { return itemList; } public void setItemList(List itemList) { this.itemList = itemList; } }