1 17 package org.alfresco.web.bean; 18 19 import java.io.File ; 20 21 26 public final class FileUploadBean 27 { 28 public static final String FILE_UPLOAD_BEAN_NAME = "alfresco.UploadBean"; 29 30 private File file; 31 private String fileName; 32 private String filePath; 33 34 37 public File getFile() 38 { 39 return file; 40 } 41 42 45 public void setFile(File file) 46 { 47 this.file = file; 48 } 49 50 53 public String getFileName() 54 { 55 return fileName; 56 } 57 58 61 public void setFileName(String fileName) 62 { 63 this.fileName = fileName; 64 } 65 66 69 public String getFilePath() 70 { 71 return filePath; 72 } 73 74 77 public void setFilePath(String filePath) 78 { 79 this.filePath = filePath; 80 } 81 } 82 | Popular Tags |