org.omg.IOP
Class ServiceIdHelper

java.lang.Object
  extended by org.omg.IOP.ServiceIdHelper

public abstract class ServiceIdHelper
extends Object

A helper operations for a context service id. A service Id is an integer constant and needs no helper, but the one is included to to facilitate the automated code handling.


Constructor Summary
ServiceIdHelper()
           
 
Method Summary
static int extract(Any any)
          Extract the int from given Any.
static String id()
          Get the int repository id.
static void insert(Any any, int that)
          Insert the int into the given Any.
static int read(InputStream input)
          Read the ServiceId from the CDR intput stream.
static TypeCode type()
          Create the ServiceId typecode (alias of CORBA ulong, named "ServiceId".
static void write(OutputStream output, int value)
          Write the ServiceId to the CDR output stream.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ServiceIdHelper

public ServiceIdHelper()
Method Detail

type

public static TypeCode type()
Create the ServiceId typecode (alias of CORBA ulong, named "ServiceId".


insert

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


extract

public static int extract(Any any)
Extract the int from given Any. This method uses the ServiceContextHolder.

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

id

public static String id()
Get the int repository id.

Returns:
"IDL:omg.org/IOP/ServiceId:1.0", always.

read

public static int read(InputStream input)
Read the ServiceId from the CDR intput stream.

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

write

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

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