1 23 24 package com.sun.enterprise.admin.common; 25 26 import java.io.File ; 27 import java.io.IOException ; 28 29 33 34 36 public interface FileTransfer { 37 38 44 public String uploadFile(String filePath) throws IOException ; 45 46 54 public String downloadClientStubs(String appName, String destDir) throws IOException ; 55 56 64 public String downloadFile(String filePath, String destinationDirPath) throws IOException ; 65 66 77 public String mcDownloadFile(String filePath, File destPath) 78 throws IOException ; 79 80 } 81 | Popular Tags |