package com.crackwillow.struts.form;

import javax.servlet.http.HttpServletRequest;

import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.apache.struts.action.ActionMessage;
import org.apache.struts.action.ActionMessages;

import com.crackwillow.log.StdOut;

public class LogonNewDispatchForm
    extends ActionForm {
  protected String methodCalled;
  protected String username;
  protected String password;

  public LogonNewDispatchForm() {
  }

  public void reset(ActionMapping mapping,
                    HttpServletRequest request) {
    methodCalled = null;
    username     = null;
    password     = null;
  }

  public String getMethodCalled() { return methodCalled; }
  public String getUsername()     { return username; }
  public String getPassword()     { return password; }

  public void setMethodCalled(String methodCalled) { this.methodCalled = methodCalled; }
  public void setUsername(String username) { this.username = username; }
  public void setPassword(String password) { this.password = password; }
} ///;-) Michael McGrady HomeSites