gnu.crypto.sasl
Class SaslOutputStream
java.lang.Object
java.io.OutputStream
gnu.crypto.sasl.SaslOutputStream
- public class SaslOutputStream
- extends java.io.OutputStream
An output stream that uses either a SaslClient
or a SaslServer
to process the data through these entities' security layer filter(s).
- Version:
- $Revision: 1.2 $
Constructor Summary |
SaslOutputStream(javax.security.sasl.SaslClient client,
java.io.OutputStream dest)
|
SaslOutputStream(javax.security.sasl.SaslServer server,
java.io.OutputStream dest)
|
Method Summary |
void |
close()
|
void |
flush()
|
void |
write(byte[] b,
int off,
int len)
When writing octets to the resulting stream, if a security layer has been
negotiated, each piece of data written (by a single invocation of
write() ) will be encapsulated as a SASL buffer, as defined in
RFC 2222, and then written to the underlying dest output stream. |
void |
write(int b)
When writing octets to the resulting stream, if a security layer has been
negotiated, each piece of data written (by a single invocation of
write() ) will be encapsulated as a SASL buffer, as defined in
RFC 2222, and then written to the underlying dest output stream. |
Methods inherited from class java.io.OutputStream |
write |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
SaslOutputStream
public SaslOutputStream(javax.security.sasl.SaslClient client,
java.io.OutputStream dest)
throws java.io.IOException
SaslOutputStream
public SaslOutputStream(javax.security.sasl.SaslServer server,
java.io.OutputStream dest)
throws java.io.IOException
close
public void close()
throws java.io.IOException
- Throws:
java.io.IOException
flush
public void flush()
throws java.io.IOException
- Throws:
java.io.IOException
write
public void write(int b)
throws java.io.IOException
- When writing octets to the resulting stream, if a security layer has been
negotiated, each piece of data written (by a single invocation of
write()
) will be encapsulated as a SASL buffer, as defined in
RFC 2222, and then written to the underlying dest output stream.
- Throws:
java.io.IOException
write
public void write(byte[] b,
int off,
int len)
throws java.io.IOException
- When writing octets to the resulting stream, if a security layer has been
negotiated, each piece of data written (by a single invocation of
write()
) will be encapsulated as a SASL buffer, as defined in
RFC 2222, and then written to the underlying dest output stream.
- Throws:
java.io.IOException
Copyright © 2001, 2002, 2003
Free Software Foundation,
Inc. All Rights Reserved.