1 2 24 25 26 27 28 29 package com.lutris.appserver.server.httpPresentation; 30 31 import java.io.IOException ; 32 import java.io.InputStream ; 33 34 35 38 public abstract class HttpPresentationInputStream extends InputStream { 39 40 42 54 public abstract int readLine(byte[] b, int off, int len) 55 throws IOException ; 56 57 58 62 public void close() throws IOException { 63 throw new HttpPresentationIOException("HttpPresentationInputStream may not be closed"); 64 } 65 } 66 | Popular Tags |