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


1   package org.acs.damsel.client.add;
2   
3   import org.apache.struts.action.*;
4   import javax.servlet.http.*;
5   
6   public class AddAssetToCollectionForm extends ActionForm {
7     private String collectionSelect = "";
8     private String assetSelect = "";
9     private String actionType = "";
10    private String addToCollectionSelect = "";
11    private boolean collectionChanged = false;
12  
13    public String getCollectionSelect() {
14      return collectionSelect;
15    }
16    public void setCollectionSelect(String collectionSelect) {
17      this.collectionSelect = collectionSelect;
18    }
19    public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
20      /**@todo: finish this method, this is just the skeleton.*/
21      return null;
22    }
23    public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
24    }
25    public String getAssetSelect() {
26      return assetSelect;
27    }
28    public void setAssetSelect(String assetSelect) {
29      this.assetSelect = assetSelect;
30    }
31    public String getActionType() {
32      return actionType;
33    }
34    public void setActionType(String actionType) {
35      this.actionType = actionType;
36    }
37    public String getAddToCollectionSelect() {
38      return addToCollectionSelect;
39    }
40    public void setAddToCollectionSelect(String addToCollectionSelect) {
41      this.addToCollectionSelect = addToCollectionSelect;
42    }
43    public boolean isCollectionChanged() {
44      return collectionChanged;
45    }
46    public void setCollectionChanged(boolean collectionChanged) {
47      this.collectionChanged = collectionChanged;
48    }
49  }