KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > omg > IOP > ServiceContext


1 package org.omg.IOP;
2
3
4 /**
5 * org/omg/IOP/ServiceContext.java .
6 * Generated by the IDL-to-Java compiler (portable), version "3.2"
7 * from ../../../../src/share/classes/org/omg/PortableInterceptor/IOP.idl
8 * Saturday, February 9, 2008 9:40:04 AM GMT
9 */

10
11 public final class ServiceContext implements org.omg.CORBA.portable.IDLEntity JavaDoc
12 {
13
14   /** The service context id */
15   public int context_id = (int)0;
16
17   /** The data associated with this service context */
18   public byte context_data[] = null;
19
20   public ServiceContext ()
21   {
22   } // ctor
23

24   public ServiceContext (int _context_id, byte[] _context_data)
25   {
26     context_id = _context_id;
27     context_data = _context_data;
28   } // ctor
29

30 } // class ServiceContext
31
Popular Tags