package at.gv.egovernment.moa.spss.api.cmsverify; import java.io.InputStream; /** * Encapsulates binary CMS content. * * @author Patrick Peck * @author Stephan Grill * @version $Id$ */ public interface CMSContentExcplicit extends CMSContent { /** * Gets the content as a stream. * * @return A stream containing the binary content. */ public InputStream getBinaryContent(); }