Package org.apache.cxf.io
Class AbstractWrappedOutputStream
- java.lang.Object
- 
- java.io.OutputStream
- 
- org.apache.cxf.io.AbstractWrappedOutputStream
 
 
- 
- All Implemented Interfaces:
- Closeable,- Flushable,- AutoCloseable
 - Direct Known Subclasses:
- AbstractThresholdOutputStream
 
 public abstract class AbstractWrappedOutputStream extends OutputStream Provides a convenient hook onFirstWrite() for those needing to wrap an output stream.
- 
- 
Field SummaryFields Modifier and Type Field Description protected booleanallowFlushprotected OutputStreamwrappedStreamprotected booleanwritten
 - 
Constructor SummaryConstructors Modifier Constructor Description protectedAbstractWrappedOutputStream()protectedAbstractWrappedOutputStream(OutputStream os)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidallowFlush(boolean b)voidclose()voidflush()protected voidonFirstWrite()voidwrite(byte[] b)voidwrite(byte[] b, int off, int len)voidwrite(int b)- 
Methods inherited from class java.io.OutputStreamnullOutputStream
 
- 
 
- 
- 
- 
Field Detail- 
wrappedStreamprotected OutputStream wrappedStream 
 - 
writtenprotected boolean written 
 - 
allowFlushprotected boolean allowFlush 
 
- 
 - 
Constructor Detail- 
AbstractWrappedOutputStreamprotected AbstractWrappedOutputStream() 
 - 
AbstractWrappedOutputStreamprotected AbstractWrappedOutputStream(OutputStream os) 
 
- 
 - 
Method Detail- 
writepublic void write(byte[] b, int off, int len) throws IOException- Overrides:
- writein class- OutputStream
- Throws:
- IOException
 
 - 
onFirstWriteprotected void onFirstWrite() throws IOException- Throws:
- IOException
 
 - 
writepublic void write(byte[] b) throws IOException- Overrides:
- writein class- OutputStream
- Throws:
- IOException
 
 - 
writepublic void write(int b) throws IOException- Specified by:
- writein class- OutputStream
- Throws:
- IOException
 
 - 
closepublic void close() throws IOException- Specified by:
- closein interface- AutoCloseable
- Specified by:
- closein interface- Closeable
- Overrides:
- closein class- OutputStream
- Throws:
- IOException
 
 - 
flushpublic void flush() throws IOException- Specified by:
- flushin interface- Flushable
- Overrides:
- flushin class- OutputStream
- Throws:
- IOException
 
 - 
allowFlushpublic void allowFlush(boolean b) 
 
- 
 
-