001 package org.omg.GSSUP;
002
003 /**
004 * Generated from IDL struct "InitialContextToken".
005 *
006 * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
007 * @version generated at Sep 6, 2011 5:12:27 AM
008 */
009
010 public final class InitialContextToken
011 implements org.omg.CORBA.portable.IDLEntity
012 {
013 public InitialContextToken(){}
014 public byte[] username;
015 public byte[] password;
016 public byte[] target_name;
017 public InitialContextToken(byte[] username, byte[] password, byte[] target_name)
018 {
019 this.username = username;
020 this.password = password;
021 this.target_name = target_name;
022 }
023 }