You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
763 B
31 lines
763 B
package org.omg.IOP;
|
|
|
|
|
|
/**
|
|
* org/omg/IOP/ServiceContext.java .
|
|
* Generated by the IDL-to-Java compiler (portable), version "3.2"
|
|
* from c:/re/workspace/8-2-build-windows-amd64-cygwin/jdk8u201/12322/corba/src/share/classes/org/omg/PortableInterceptor/IOP.idl
|
|
* Saturday, December 15, 2018 6:38:37 PM PST
|
|
*/
|
|
|
|
public final class ServiceContext implements org.omg.CORBA.portable.IDLEntity
|
|
{
|
|
|
|
/** The service context id */
|
|
public int context_id = (int)0;
|
|
|
|
/** The data associated with this service context */
|
|
public byte context_data[] = null;
|
|
|
|
public ServiceContext ()
|
|
{
|
|
} // ctor
|
|
|
|
public ServiceContext (int _context_id, byte[] _context_data)
|
|
{
|
|
context_id = _context_id;
|
|
context_data = _context_data;
|
|
} // ctor
|
|
|
|
} // class ServiceContext
|