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/OrphanedAssetsForm.java


1   package org.acs.damsel.client.remove;
2   
3   import org.apache.struts.action.*;
4   import javax.servlet.http.*;
5   
6   public class OrphanedAssetsForm extends ActionForm {
7     private String selectString = new String();
8     private String collectionSelect = "AllAssets";
9     private String orderBySelect = "FileName";
10  
11    public String getSelectString() {
12      return selectString;
13    }
14    public void setSelectString(String selectString) {
15      this.selectString = selectString;
16    }
17    public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
18      /**@todo: finish this method, this is just the skeleton.*/
19      return null;
20    }
21    public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
22    }
23    public String getCollectionSelect() {
24      return collectionSelect;
25    }
26    public void setCollectionSelect(String collectionSelect) {
27      this.collectionSelect = collectionSelect;
28    }
29    public String getOrderBySelect() {
30      return orderBySelect;
31    }
32    public void setOrderBySelect(String orderBySelect) {
33      this.orderBySelect = orderBySelect;
34    }
35  }