01: package com.bostechcorp.cbesb.console.server;
02:
03: import java.io.File;
04:
05: import com.bostechcorp.cbesb.console.jmxclient.ServerUtil;
06:
07: public class LicensingFileUploadServlet extends FileUploadServlet {
08:
09: /**
10: *
11: */
12: private File file = null;
13: private static final long serialVersionUID = 7703945577976236830L;
14:
15: protected String getRootDir() throws Exception {
16: return ServerUtil.getLicenseFolder();
17: }
18:
19: public void changeFilename(File file) {
20: this.file = file;
21: }
22: }
|