public final class OctetSeqHolder extends java.lang.Object implements org.omg.CORBA.portable.Streamable
OctetSeq that is mapped into
java byte[].| Modifier and Type | Field and Description |
|---|---|
byte[] |
value
The
byte[] (CORBA OctetSeq) value,
held by this OctetSeqHolder. |
| Constructor and Description |
|---|
OctetSeqHolder()
Constructs an instance of OctetSeqHolder,
initializing
value to null. |
OctetSeqHolder(byte[] initial_value)
Constructs an instance of OctetSeqHolder,
initializing
value to the given byte[]. |
| Modifier and Type | Method and Description |
|---|---|
void |
_read(org.omg.CORBA.portable.InputStream input)
Fill in the
value field by reading the required data
from the given stream. |
TypeCode |
_type()
Returns the TypeCode, corresponding the CORBA type that is stored
using this holder.
|
void |
_write(org.omg.CORBA.portable.OutputStream output)
Write the
value field to the given stream. |
public byte[] value
byte[] (CORBA OctetSeq) value,
held by this OctetSeqHolder.public OctetSeqHolder()
value to null.public OctetSeqHolder(byte[] initial_value)
value to the given byte[].initial_value - a value that will be assigned to the
value field.public void _read(org.omg.CORBA.portable.InputStream input)
value field by reading the required data
from the given stream. This method first reads the array size
(as CORBA long) and then calls the
InputStream.read_octet_array(byte[], int, int)._read in interface org.omg.CORBA.portable.Streamableinput - the input stream to read from.public TypeCode _type()
_type in interface org.omg.CORBA.portable.Streamablepublic void _write(org.omg.CORBA.portable.OutputStream output)
value field to the given stream.
This method first writes the array size
(as CORBA long) and then calls the
OutputStream.write_octet_array(byte[], int, int)._write in interface org.omg.CORBA.portable.Streamableoutput - the output stream to write into.