package com.michaelthomas.mystrutshelloworld; import com.opensymphony.xwork2.ActionSupport; /** * Base Action class for the package. */ public class WebappSupport extends ActionSupport { private String username; public String getUsername() { return username; } public void setUsername(String username) { this.username = username; } private String password; public String getPassword() { return password; } public void setPassword(String password) { this.password = password; } }