01: package com.calipso.reportgenerator.common;
02:
03: import com.calipso.reportgenerator.common.IReportManager;
04: import com.calipso.reportgenerator.common.ReportGeneratorConfiguration;
05:
06: /**
07: *
08: * User: Breto
09: * Date: 06/05/2004
10: * Time: 10:43:37
11: */
12: public interface IReportManagerFactory {
13: public IReportManager newReportManager(
14: ReportGeneratorConfiguration reportGeneratorConfiguration,
15: boolean isStateFul, String distributedHost)
16: throws InfoException;
17: }
|