All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class org.omg.CORBA.ServerRequest

java.lang.Object
   |
   +----org.omg.CORBA.ServerRequest

public abstract class ServerRequest
extends Object

IDL definition:
interface ServerRequest {
readonly attribute ::CORBA::Identifier op_name;
readonly attribute ::CORBA::Context ctx;
void params(
in ::CORBA::NVList params
);
void result(
in any result
);
void except(
in any except
);
};


Constructor Index

 o ServerRequest()

Method Index

 o ctx()

Reader for attribute: ::CORBA::ServerRequest::ctx.

 o except(Any)

Operation: ::CORBA::ServerRequest::except.

 o op_name()

Reader for attribute: ::CORBA::ServerRequest::op_name.

 o params(NVList)

Operation: ::CORBA::ServerRequest::params.

 o result(Any)

Operation: ::CORBA::ServerRequest::result.

Constructors

 o ServerRequest
 public ServerRequest()

Methods

 o op_name
 public abstract String op_name()

Reader for attribute: ::CORBA::ServerRequest::op_name.

readonly attribute ::CORBA::Identifier op_name;

 o ctx
 public abstract Context ctx()

Reader for attribute: ::CORBA::ServerRequest::ctx.

readonly attribute ::CORBA::Context ctx;

 o params
 public abstract void params(NVList params)

Operation: ::CORBA::ServerRequest::params.

void params(
in ::CORBA::NVList params
);

 o result
 public abstract void result(Any result)

Operation: ::CORBA::ServerRequest::result.

void result(
in any result
);

 o except
 public abstract void except(Any except)

Operation: ::CORBA::ServerRequest::except.

void except(
in any except
);


All Packages  Class Hierarchy  This Package  Previous  Next  Index