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

Quick Search    Search Deep

Source code: org/acs/damsel/client/add/AddGroupForm.java


1   package org.acs.damsel.client.add;
2   
3   import org.apache.struts.action.*;
4   import javax.servlet.http.*;
5   
6   public class AddGroupForm extends ActionForm {
7     private String description;
8     private String groupName;
9     public String getDescription() {
10      return description;
11    }
12    public void setDescription(String description) {
13      this.description = description;
14    }
15    public String getGroupName() {
16      return groupName;
17    }
18    public void setGroupName(String groupName) {
19      this.groupName = groupName;
20    }
21    public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
22      /**@todo: finish this method, this is just the skeleton.*/
23      return null;
24    }
25    public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
26    }
27  }