001    package org.omg.CSI;
002    
003    
004    /**
005    * org/omg/CSI/X509CertificateChainHolder.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/CSI.idl
008    * Monday, June 18, 2012 10:36:14 AM CEST
009    */
010    
011    
012    // representation of Certificate is as defined in [IETF RFC 2459].
013    public final class X509CertificateChainHolder implements org.omg.CORBA.portable.Streamable
014    {
015      public byte value[] = null;
016    
017      public X509CertificateChainHolder ()
018      {
019      }
020    
021      public X509CertificateChainHolder (byte[] initialValue)
022      {
023        value = initialValue;
024      }
025    
026      public void _read (org.omg.CORBA.portable.InputStream i)
027      {
028        value = org.omg.CSI.X509CertificateChainHelper.read (i);
029      }
030    
031      public void _write (org.omg.CORBA.portable.OutputStream o)
032      {
033        org.omg.CSI.X509CertificateChainHelper.write (o, value);
034      }
035    
036      public org.omg.CORBA.TypeCode _type ()
037      {
038        return org.omg.CSI.X509CertificateChainHelper.type ();
039      }
040    
041    }