001    package railo.runtime.flash;
002    
003    import java.io.InputStream;
004    
005    public interface FlashEngine {
006    
007            /**
008             * return flash generated by the flashEngine
009             * @param input xml input
010             * @return genereted flash
011             */
012            public InputStream createFlash(String input);
013    }