Source code: org/acs/damsel/client/ingestionClient/IngestionClientUploadExcelForm.java
1 package org.acs.damsel.client.ingestionClient;
2
3 import org.apache.struts.action.*;
4 import javax.servlet.http.*;
5
6 public class IngestionClientUploadExcelForm extends ActionForm {
7 private String collectionSelect = "";
8 private org.apache.struts.upload.FormFile excelFile;
9 public ActionErrors validate(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
10 /**@todo: finish this method, this is just the skeleton.*/
11 return null;
12 }
13 public void reset(ActionMapping actionMapping, HttpServletRequest httpServletRequest) {
14 }
15 public String getCollectionSelect() {
16 return collectionSelect;
17 }
18 public void setCollectionSelect(String collectionSelect) {
19 this.collectionSelect = collectionSelect;
20 }
21 public org.apache.struts.upload.FormFile getExcelFile() {
22 return excelFile;
23 }
24 public void setExcelFile(org.apache.struts.upload.FormFile excelFile) {
25 this.excelFile = excelFile;
26 }
27 }