1 package gcc.org.omg.GIOP; 2 3 4 10 11 12 public final class PrincipalHolder implements org.omg.CORBA.portable.Streamable 14 { 15 public byte value[] = null; 16 17 public PrincipalHolder () 18 { 19 } 20 21 public PrincipalHolder (byte[] initialValue) 22 { 23 value = initialValue; 24 } 25 26 public void _read (org.omg.CORBA.portable.InputStream i) 27 { 28 value = gcc.org.omg.GIOP.PrincipalHelper.read (i); 29 } 30 31 public void _write (org.omg.CORBA.portable.OutputStream o) 32 { 33 gcc.org.omg.GIOP.PrincipalHelper.write (o, value); 34 } 35 36 public org.omg.CORBA.TypeCode _type () 37 { 38 return gcc.org.omg.GIOP.PrincipalHelper.type (); 39 } 40 41 } 42 | Popular Tags |