1 package org.omg.PortableInterceptor; 2 3 4 10 11 12 15 abstract public class ObjectIdHelper 16 { 17 private static String _id = "IDL:omg.org/PortableInterceptor/ObjectId:1.0"; 18 19 public static void insert (org.omg.CORBA.Any a, byte[] that) 20 { 21 org.omg.CORBA.portable.OutputStream out = a.create_output_stream (); 22 a.type (type ()); 23 write (out, that); 24 a.read_value (out.create_input_stream (), type ()); 25 } 26 27 public static byte[] extract (org.omg.CORBA.Any a) 28 { 29 return read (a.create_input_stream ()); 30 } 31 32 private static org.omg.CORBA.TypeCode __typeCode = null; 33 synchronized public static org.omg.CORBA.TypeCode type () 34 { 35 if (__typeCode == null) 36 { 37 __typeCode = org.omg.CORBA.ORB.init ().get_primitive_tc (org.omg.CORBA.TCKind.tk_octet); 38 __typeCode = org.omg.CORBA.ORB.init ().create_sequence_tc (0, __typeCode); 39 __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.CORBA.OctetSeqHelper.id (), "OctetSeq", __typeCode); 40 __typeCode = org.omg.CORBA.ORB.init ().create_alias_tc (org.omg.PortableInterceptor.ObjectIdHelper.id (), "ObjectId", __typeCode); 41 } 42 return __typeCode; 43 } 44 45 public static String id () 46 { 47 return _id; 48 } 49 50 public static byte[] read (org.omg.CORBA.portable.InputStream istream) 51 { 52 byte value[] = null; 53 value = org.omg.CORBA.OctetSeqHelper.read (istream); 54 return value; 55 } 56 57 public static void write (org.omg.CORBA.portable.OutputStream ostream, byte[] value) 58 { 59 org.omg.CORBA.OctetSeqHelper.write (ostream, value); 60 } 61 62 } 63 | Popular Tags |