| Home >> All >> org >> acs >> damsel >> client >> [ add Javadoc ] |
Source code: org/acs/damsel/client/add/AddAssetForm.java
1 package org.acs.damsel.client.add; 2 3 import javax.servlet.http.*; 4 5 import org.apache.struts.action.*; 6 import org.apache.struts.upload.*; 7 8 9 public class AddAssetForm extends ActionForm { 10 11 private String collectionSelect = new String(); 12 private FormFile assetFile = null; 13 private FormFile webViewFile; 14 15 public String getCollectionSelect() { 16 return collectionSelect; 17 } 18 19 public void setCollectionSelect(String collectionSelect) { 20 this.collectionSelect = collectionSelect; 21 } 22 23 public FormFile getAssetFile() { 24 return assetFile; 25 } 26 27 public void setAssetFile(FormFile assetFile) { 28 this.assetFile = assetFile; 29 } 30 31 public ActionErrors validate(ActionMapping actionMapping, 32 HttpServletRequest httpServletRequest) { 33 return null; 34 } 35 36 public void reset(ActionMapping actionMapping, 37 HttpServletRequest httpServletRequest) { 38 } 39 public FormFile getWebViewFile() { 40 return webViewFile; 41 } 42 public void setWebViewFile(FormFile webViewFile) { 43 this.webViewFile = webViewFile; 44 } 45 }