001 package org.omg.CSI;
002
003
004 /**
005 * Generated from IDL struct "ContextError".
006 *
007 * @author JacORB IDL compiler V 2.3.0 (JBoss patch 6), 06-Jun-2007
008 * @version generated at Sep 6, 2011 5:12:32 AM
009 */
010
011 public final class ContextErrorHelper
012 {
013 private static org.omg.CORBA.TypeCode _type = null;
014 public static org.omg.CORBA.TypeCode type ()
015 {
016 if (_type == null)
017 {
018 _type = org.omg.CORBA.ORB.init().create_struct_tc(org.omg.CSI.ContextErrorHelper.id(),"ContextError",new org.omg.CORBA.StructMember[]{new org.omg.CORBA.StructMember("client_context_id", org.omg.CSI.ContextIdHelper.type(), null),new org.omg.CORBA.StructMember("major_status", org.omg.CORBA.ORB.init().get_primitive_tc(org.omg.CORBA.TCKind.from_int(3)), null),new org.omg.CORBA.StructMember("minor_status", org.omg.CORBA.ORB.init().get_primitive_tc(org.omg.CORBA.TCKind.from_int(3)), null),new org.omg.CORBA.StructMember("error_token", org.omg.CSI.GSSTokenHelper.type(), null)});
019 }
020 return _type;
021 }
022
023 public static void insert (final org.omg.CORBA.Any any, final org.omg.CSI.ContextError s)
024 {
025 any.type(type());
026 write( any.create_output_stream(),s);
027 }
028
029 public static org.omg.CSI.ContextError extract (final org.omg.CORBA.Any any)
030 {
031 return read(any.create_input_stream());
032 }
033
034 public static String id()
035 {
036 return "IDL:omg.org/CSI/ContextError:1.0";
037 }
038 public static org.omg.CSI.ContextError read (final org.omg.CORBA.portable.InputStream in)
039 {
040 org.omg.CSI.ContextError result = new org.omg.CSI.ContextError();
041 result.client_context_id=in.read_ulonglong();
042 result.major_status=in.read_long();
043 result.minor_status=in.read_long();
044 result.error_token = org.omg.CSI.GSSTokenHelper.read(in);
045 return result;
046 }
047 public static void write (final org.omg.CORBA.portable.OutputStream out, final org.omg.CSI.ContextError s)
048 {
049 out.write_ulonglong(s.client_context_id);
050 out.write_long(s.major_status);
051 out.write_long(s.minor_status);
052 org.omg.CSI.GSSTokenHelper.write(out,s.error_token);
053 }
054 }