org.omg.CORBA
public abstract class ServerRequest extends Object
Method Summary | |
---|---|
void | arguments(NVList args)
Should specify the method parameter types and retrieve the
values that must be passed to the method being called. |
abstract Context | ctx()
Get the context information. |
void | except(Any exc)
This method is deprecated, use {@link #set_exception} (same parameter).
|
String | operation()
Should return the name of the operation (method) being invoked.
|
String | op_name()
This method is deprecated, use {@link #operation} (same parameter).
|
void | params(NVList args)
This method is deprecated, use {@link #arguments} (same parameter).
|
void | result(Any r)
This method is deprecated, {@link #set_result} (same parameter).
|
void | set_exception(Any exc)
Should set the exception that has been thrown during
the method invocation. |
void | set_result(Any result)
Should specify the return value for the call. |
Parameters: args the method parameters.
Throws: NO_IMPLEMENT, always.
Deprecated: since 1.2.
This method is deprecated, use {@link #set_exception} (same parameter).Throws: NO_IMPLEMENT, always.
Returns: the name of the operation being invoked. The object attribute access operations are called _get_<attribute_name> and _set_<attribute_name>.
Throws: NO_IMPLEMENT, always.
Deprecated: since 1.2
This method is deprecated, use {@link #operation} (same parameter).Throws: NO_IMPLEMENT, always.
Deprecated: since 1.2
This method is deprecated, use {@link #arguments} (same parameter).Throws: NO_IMPLEMENT, always.
Deprecated: since 1.2
This method is deprecated, {@link #set_result} (same parameter).Throws: NO_IMPLEMENT, always.
Parameters: exc the Any, holding the exception.
Throws: NO_IMPLEMENT, always.
Parameters: result the return value.
Throws: NO_IMPLEMENT, always.