Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/acs/damsel/client/remove/DeleteUserForm.java


1   package org.acs.damsel.client.remove;
2   
3   import org.apache.struts.action.*;
4   import javax.servlet.http.*;
5   
6   public class DeleteUserForm extends ActionForm {
7     private String orderBySelect = "LastName";
8     private boolean checkOrderBy = false;
9     public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
10      /**@todo: finish this method, this is just the skeleton.*/
11      return null;
12    }
13    public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
14    }
15    public String getOrderBySelect() {
16      return orderBySelect;
17    }
18    public void setOrderBySelect(String orderBySelect) {
19      this.orderBySelect = orderBySelect;
20    }
21    public boolean isCheckOrderBy() {
22      return checkOrderBy;
23    }
24    public void setCheckOrderBy(boolean checkOrderBy) {
25      this.checkOrderBy = checkOrderBy;
26    }
27  }