01: /*
02: * snapper
03: *
04: * Enhydra super-servlet specification object
05: *
06: */
07:
08: package org.enhydra.snapperAdmin.spec;
09:
10: import java.io.File;
11:
12: public interface Download {
13:
14: public File downloadFtpFile(String id, String type, String siteName)
15: throws Exception;
16:
17: public File downloadWebDavFile(String id, String type,
18: String siteName) throws Exception;
19:
20: }
|