org.omg.PortableInterceptor

Class AdapterManagerIdHelper

public abstract class AdapterManagerIdHelper extends Object

A helper operations for the adapter manager id. An adapter manager id is an integer constant and needs no helper, but the one is included anyway.

Since: 1.5

Method Summary
static intextract(Any any)
Extract the int from given Any.
static Stringid()
Get the adapter manager id repository id.
static voidinsert(Any any, int that)
Insert the int into the given Any.
static intread(InputStream input)
Read the int (adapter manager id) from the CDR intput stream.
static TypeCodetype()
Create the AdapterManagerId typecode (alias of CORBA long (java int), named "AdapterManagerId").
static voidwrite(OutputStream output, int value)
Write the int (adapter manager id) to the CDR output stream.

Method Detail

extract

public static int extract(Any any)
Extract the int from given Any.

Throws: BAD_OPERATION if the passed Any does not contain int.

id

public static String id()
Get the adapter manager id repository id.

Returns: "IDL:omg.org/PortableInterceptor/AdapterManagerId:1.0", always.

insert

public static void insert(Any any, int that)
Insert the int into the given Any.

read

public static int read(InputStream input)
Read the int (adapter manager id) from the CDR intput stream.

Parameters: input a org.omg.CORBA.portable stream to read from.

type

public static TypeCode type()
Create the AdapterManagerId typecode (alias of CORBA long (java int), named "AdapterManagerId").

write

public static void write(OutputStream output, int value)
Write the int (adapter manager id) to the CDR output stream.

Parameters: output a org.omg.CORBA.portable stream stream to write into. value a value to write.