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