01: package vicazh.hyperpool.stream;
02:
03: import java.io.*;
04: import java.util.*;
05:
06: /**
07: * The report service interface
08: *
09: * @author Victor Zhigunov
10: * @version 0.4.0
11: */
12: public interface ReportServiceMBean extends FileServiceMBean {
13: String getDelimiter();
14:
15: File[] listFiles(PeriodControl pc);
16:
17: Locale getLocale();
18: }
|