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