Package org.jboss.resteasy.util
Class DelegatingOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.jboss.resteasy.util.DelegatingOutputStream
-
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
public class DelegatingOutputStream extends OutputStream
- Version:
- $Revision: 1 $
- Author:
- Bill Burke
-
-
Field Summary
Fields Modifier and Type Field Description protected OutputStream
delegate
-
Constructor Summary
Constructors Constructor Description DelegatingOutputStream()
DelegatingOutputStream(OutputStream delegate)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
void
flush()
OutputStream
getDelegate()
void
setDelegate(OutputStream delegate)
void
write(byte[] bytes)
void
write(byte[] bytes, int i, int i1)
void
write(int i)
-
-
-
Field Detail
-
delegate
protected OutputStream delegate
-
-
Constructor Detail
-
DelegatingOutputStream
public DelegatingOutputStream()
-
DelegatingOutputStream
public DelegatingOutputStream(OutputStream delegate)
-
-
Method Detail
-
getDelegate
public OutputStream getDelegate()
-
setDelegate
public void setDelegate(OutputStream delegate)
-
write
public void write(int i) throws IOException
- Specified by:
write
in classOutputStream
- Throws:
IOException
-
write
public void write(byte[] bytes) throws IOException
- Overrides:
write
in classOutputStream
- Throws:
IOException
-
write
public void write(byte[] bytes, int i, int i1) throws IOException
- Overrides:
write
in classOutputStream
- Throws:
IOException
-
flush
public void flush() throws IOException
- Specified by:
flush
in interfaceFlushable
- Overrides:
flush
in classOutputStream
- Throws:
IOException
-
close
public void close() throws IOException
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classOutputStream
- Throws:
IOException
-
-