FileDocCategorySizeDatePackage
ResourceStatusHelper.javaAPI DocGlassfish v2 API3597Fri May 04 22:36:36 BST 2007com.sun.jts.otsidl

ResourceStatusHelper

public abstract class ResourceStatusHelper extends Object
com/sun/jts/otsidl/ResourceStatusHelper.java . Generated by the IDL-to-Java compiler (portable), version "3.1" from com/sun/jts/ots.idl Tuesday, February 5, 2002 12:57:23 PM PST

Fields Summary
private static String
_id
private static org.omg.CORBA.TypeCode
__typeCode
Constructors Summary
Methods Summary
public static com.sun.jts.otsidl.ResourceStatusextract(org.omg.CORBA.Any a)

    return read (a.create_input_stream ());
  
public static java.lang.Stringid()

    return _id;
  
public static voidinsert(org.omg.CORBA.Any a, com.sun.jts.otsidl.ResourceStatus that)


         
  
    org.omg.CORBA.portable.OutputStream out = a.create_output_stream ();
    a.type (type ());
    write (out, that);
    a.read_value (out.create_input_stream (), type ());
  
public static com.sun.jts.otsidl.ResourceStatusread(org.omg.CORBA.portable.InputStream istream)

    return com.sun.jts.otsidl.ResourceStatus.from_int (istream.read_long ());
  
public static synchronized org.omg.CORBA.TypeCodetype()

       
  
    if (__typeCode == null)
    {
      __typeCode = org.omg.CORBA.ORB.init ().create_enum_tc (com.sun.jts.otsidl.ResourceStatusHelper.id (), "ResourceStatus", new String[] { "None", "Registered", "Completing", "Completed", "Heuristic"} );
    }
    return __typeCode;
  
public static voidwrite(org.omg.CORBA.portable.OutputStream ostream, com.sun.jts.otsidl.ResourceStatus value)

    ostream.write_long (value.value ());