Class AbstractEncryptOutputProcessor.CharacterEventGeneratorOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.apache.xml.security.stax.impl.processor.output.AbstractEncryptOutputProcessor.CharacterEventGeneratorOutputStream
-
- All Implemented Interfaces:
Closeable
,Flushable
,AutoCloseable
- Enclosing class:
- AbstractEncryptOutputProcessor
public class AbstractEncryptOutputProcessor.CharacterEventGeneratorOutputStream extends OutputStream
Creates Character-XMLEvents from the byte stream
-
-
Constructor Summary
Constructors Constructor Description CharacterEventGeneratorOutputStream()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Deque<XMLSecCharacters>
getCharactersBuffer()
void
write(byte[] b)
void
write(byte[] b, int off, int len)
void
write(int b)
-
Methods inherited from class java.io.OutputStream
close, flush, nullOutputStream
-
-
-
-
Method Detail
-
getCharactersBuffer
public Deque<XMLSecCharacters> getCharactersBuffer()
-
write
public void write(int b) throws IOException
- Specified by:
write
in classOutputStream
- Throws:
IOException
-
write
public void write(byte[] b) throws IOException
- Overrides:
write
in classOutputStream
- Throws:
IOException
-
write
public void write(byte[] b, int off, int len) throws IOException
- Overrides:
write
in classOutputStream
- Throws:
IOException
-
-