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

Quick Search    Search Deep

Source code: org/acs/damsel/client/browse/BrowseResultForm.java


1   package org.acs.damsel.client.browse;
2   
3   import org.apache.struts.action.*;
4   import javax.servlet.http.*;
5   import org.acs.damsel.srvr.asset.*;
6   
7   public class BrowseResultForm extends ActionForm {
8     private Asset asset;
9     private String fileName;
10  
11    public String getFileName(){
12      return this.fileName;
13    }
14  
15    public void setFileName(String filename){
16      this.fileName = filename;
17    }
18  
19    public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
20      return null;
21    }
22    public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
23    }
24    public Asset getAsset() {
25      return asset;
26    }
27    public void setAsset(Asset asset) {
28      this.asset = asset;
29    }
30  }