package at.gv.egovernment.moa.spss.api.common; import java.io.InputStream; /** * Encapsulates binary content. * * @author Patrick Peck * @author Stephan Grill * @version $Id$ */ public interface ContentBinary extends Content { /** * Get the binary content. * * @return An InputStream from which the binary content can * be read. */ public InputStream getBinaryContent(); }