Dear Wiki user, You have subscribed to a wiki page or wiki category on "Struts Wiki" for change notification.
The following page has been changed by Thiago: http://wiki.apache.org/struts/ActionForm New page: import org.apache.struts.upload.FormFile; public class MyActionForm extends ActionForm { private FormFile myFile; public void setMyFile(FormFile myFile) { this.myFile = myFile; } public FormFile getMyFile() { return myFile; } }