001 package org.shiftone.jrat.core.output; 002 003 004 /** 005 * @author jeff@shiftone.org (Jeff Drost) 006 */ 007 public interface FileOutputRegistryMBean { 008 009 int getRegisteredFileOutputCount(); 010 011 012 String getRegisteredFileOutputsHtml(); 013 014 015 void closeFileOutputs(); 016 017 018 void flushFileOutputs(); 019 }