001    package org.omg.GIOP;
002    
003    
004    /**
005    * org/omg/GIOP/PrincipalHolder.java .
006    * Generated by the IDL-to-Java compiler (portable), version "3.2"
007    * from /builddir/build/BUILD/geronimo-specs-1.6/geronimo-spec-corba/src/main/idl/GIOP.idl
008    * Saturday, September 22, 2012 10:56:39 AM CEST
009    */
010    
011    
012    //       be available for V1.0 and V1.1
013    public final class PrincipalHolder implements org.omg.CORBA.portable.Streamable
014    {
015      public byte value[] = null;
016    
017      public PrincipalHolder ()
018      {
019      }
020    
021      public PrincipalHolder (byte[] initialValue)
022      {
023        value = initialValue;
024      }
025    
026      public void _read (org.omg.CORBA.portable.InputStream i)
027      {
028        value = org.omg.GIOP.PrincipalHelper.read (i);
029      }
030    
031      public void _write (org.omg.CORBA.portable.OutputStream o)
032      {
033        org.omg.GIOP.PrincipalHelper.write (o, value);
034      }
035    
036      public org.omg.CORBA.TypeCode _type ()
037      {
038        return org.omg.GIOP.PrincipalHelper.type ();
039      }
040    
041    }