public abstract class ServerIdHelper extends java.lang.Object
| Constructor and Description |
|---|
ServerIdHelper() |
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
extract(org.omg.CORBA.Any a)
Extract the Server Id from Any ((uses
Any.extract_string()). |
static java.lang.String |
id()
Return the Server Id repository id.
|
static void |
insert(org.omg.CORBA.Any a,
java.lang.String that)
Insert the Server Id into Any (uses
Any.insert_string(java.lang.String)). |
static java.lang.String |
read(org.omg.CORBA.portable.InputStream input)
Calls
InputStream.read_string(). |
static org.omg.CORBA.TypeCode |
type()
Return an alias typecode.
|
static void |
write(org.omg.CORBA.portable.OutputStream output,
java.lang.String value)
Calls
OutputStream.write_string(String). |
public ServerIdHelper()
public static void insert(org.omg.CORBA.Any a, java.lang.String that)
Any.insert_string(java.lang.String)).a - the Any to insert into.that - the string to insert.public static java.lang.String extract(org.omg.CORBA.Any a)
Any.extract_string()).a - the Any to extract from.public static org.omg.CORBA.TypeCode type()
public static java.lang.String id()
public static java.lang.String read(org.omg.CORBA.portable.InputStream input)
InputStream.read_string().input - the stream to read from.public static void write(org.omg.CORBA.portable.OutputStream output, java.lang.String value)
OutputStream.write_string(String).output - the stream to write into.value - the string (Server Id) value to write.