01: package vicazh.hyperpool.stream;
02:
03: import java.io.*;
04: import vicazh.hyperpool.*;
05:
06: /**
07: * The file service interface
08: *
09: * @author Victor Zhigunov
10: * @version 0.4.0
11: */
12: public interface FileServiceMBean extends ServiceMBean {
13: static final String ZAP = "zap";
14: static final String CLEAR = "clear";
15: static final String OPTIONS = "options";
16:
17: byte[] get(File file) throws IOException;
18:
19: char getSeparator();
20: }
|