001    package org.omg.CSI;
002    
003    /**
004     * Generated from IDL struct "EstablishContext".
005     *
006     * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
007     * @version generated at Jun 18, 2012 10:38:00 AM
008     */
009    
010    public final class EstablishContext
011            implements org.omg.CORBA.portable.IDLEntity
012    {
013            public EstablishContext(){}
014            public long client_context_id;
015            public org.omg.CSI.AuthorizationElement[] authorization_token;
016            public org.omg.CSI.IdentityToken identity_token;
017            public byte[] client_authentication_token;
018            public EstablishContext(long client_context_id, org.omg.CSI.AuthorizationElement[] authorization_token, org.omg.CSI.IdentityToken identity_token, byte[] client_authentication_token)
019            {
020                    this.client_context_id = client_context_id;
021                    this.authorization_token = authorization_token;
022                    this.identity_token = identity_token;
023                    this.client_authentication_token = client_authentication_token;
024            }
025    }