1 16 17 package org.apache.jetspeed.util.servlet; 18 19 import javax.servlet.ServletOutputStream ; 20 import java.io.OutputStream ; 21 import java.io.IOException ; 22 23 30 public class EcsServletOutputStream extends ServletOutputStream { 31 32 33 private OutputStream out = null; 34 35 40 protected EcsServletOutputStream(OutputStream out) { 41 this.out = out; 42 } 43 44 51 public void write(int c) throws IOException { 52 this.out.write(c); 53 } 54 } 55 | Popular Tags |