1 package org.apache.slide.projector.value;2 3 4 import java.io.IOException ;5 import java.io.InputStream ;6 7 public interface StreamableValue extends Value {8 public InputStream getInputStream() throws IOException ;9 10 public String getCharacterEncoding();11 12 int getContentLength();13 14 public boolean isDocument();15 }