package net.ihe.common.report;

import java.util.Map;

import net.sf.jasperreports.engine.JRException;

public interface ReportExporterManagerLocal
{
   public String exportToJasperFlash( String reportSource    ) throws JRException ;
  
   public void exportToPDF_(String reportSource, String fileNameDestination  ,  Map parameters  ) throws JRException ;

   public void exportToPDF_(String reportSource, String fileNameDestination   ) throws JRException ;
 
   public void destroy() ;

}
