01: package pygmy.core; 02: 03: import java.io.OutputStream; 04: import java.io.IOException; 05: 06: public interface ResponseData { 07: public long getLength(); 08: 09: public void send(OutputStream os) throws IOException; 10: }