WW-1340 Update Javadocs, constants, and such. No functional changes.

git-svn-id: https://svn.apache.org/repos/asf/struts/struts2/trunk@432886 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Ted Nathan Husted
2006-08-19 22:03:04 +00:00
parent ed8687c360
commit 5b67f4ac48
117 changed files with 792 additions and 523 deletions
@@ -20,6 +20,7 @@ package mailreader2;
import com.opensymphony.util.BeanUtils;
import com.opensymphony.xwork2.ActionSupport;
import com.opensymphony.xwork2.ModelDriven;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.apache.struts.apps.mailreader.dao.ExpiredPasswordException;
@@ -50,7 +51,32 @@ import java.util.Map;
* avoids creating unnecessary local properties. Pick your poison.</p>
*/
public class MailreaderSupport extends ActionSupport
implements SessionAware, ApplicationAware {
implements SessionAware, ApplicationAware, ModelDriven {
private AppService appService;
public AppService getAppService() {
return appService;
}
public void setAppService(AppService appService) {
this.appService = appService;
}
private AppData appData = new AppData();
public Object getModel() {
return appData;
}
public void setAppData(AppData appData) {
this.appData = appData;
}
public AppData getAppData() {
return appData;
}
/**
* Return CANCEL so apropriate result can be selected.