01: package com.quantum.flatfiles.wizard; 02: 03: import java.io.InputStream; 04: 05: /** 06: * @author BC Holmes 07: */ 08: public interface InputStreamProvider { 09: 10: public InputStream getInputStream(); 11: }