01: /*
02: * Created on Jan 20, 2006
03: *
04: * TODO To change the template for this generated file go to
05: * Window - Preferences - Java - Code Style - Code Templates
06: */
07: package org.enhydra.snapperPreviewer.spec;
08:
09: import java.io.File;
10: import java.io.IOException;
11:
12: /**
13: * @author lola
14: *
15: * TODO To change the template for this generated type comment go to
16: * Window - Preferences - Java - Code Style - Code Templates
17: */
18: public interface FileContainerManager {
19:
20: public void init() throws IOException;
21:
22: public File getContainerFile(String path, String siteName)
23: throws Exception;
24:
25: public void deleteAllTempFiles();
26:
27: public String getRestOfFilePath();
28:
29: }
|