org.apache.cxf.rs.security.jose.jwe
Class JweOutputStream

java.lang.Object
  extended by java.io.OutputStream
      extended by java.io.FilterOutputStream
          extended by org.apache.cxf.rs.security.jose.jwe.JweOutputStream
All Implemented Interfaces:
Closeable, Flushable

public class JweOutputStream
extends FilterOutputStream


Field Summary
 
Fields inherited from class java.io.FilterOutputStream
out
 
Constructor Summary
JweOutputStream(OutputStream out, Cipher encryptingCipher, AuthenticationTagProducer authTagProducer)
           
 
Method Summary
 void finalFlush()
           
 void write(byte[] b, int off, int len)
           
 void write(int value)
           
 
Methods inherited from class java.io.FilterOutputStream
close, flush, write
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

JweOutputStream

public JweOutputStream(OutputStream out,
                       Cipher encryptingCipher,
                       AuthenticationTagProducer authTagProducer)
Method Detail

write

public void write(int value)
           throws IOException
Overrides:
write in class FilterOutputStream
Throws:
IOException

write

public void write(byte[] b,
                  int off,
                  int len)
           throws IOException
Overrides:
write in class FilterOutputStream
Throws:
IOException

finalFlush

public void finalFlush()
                throws IOException
Throws:
IOException


Apache CXF