Package org.postgresql.gss
Class GSSOutputStream
- java.lang.Object
-
- java.io.OutputStream
-
- org.postgresql.gss.GSSOutputStream
-
- All Implemented Interfaces:
java.io.Closeable
,java.io.Flushable
,java.lang.AutoCloseable
public class GSSOutputStream extends java.io.OutputStream
-
-
Constructor Summary
Constructors Constructor Description GSSOutputStream(java.io.OutputStream out, org.ietf.jgss.GSSContext gssContext, org.ietf.jgss.MessageProp messageProp, int bufferSize)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
flush()
void
write(byte[] buf)
void
write(byte[] b, int pos, int len)
void
write(int b)
-
-
-
Method Detail
-
write
public void write(int b) throws java.io.IOException
- Specified by:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
write
public void write(byte[] buf) throws java.io.IOException
- Overrides:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
write
public void write(byte[] b, int pos, int len) throws java.io.IOException
- Overrides:
write
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
flush
public void flush() throws java.io.IOException
- Specified by:
flush
in interfacejava.io.Flushable
- Overrides:
flush
in classjava.io.OutputStream
- Throws:
java.io.IOException
-
-