Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
java.lang.Object
org.omg.CORBA.ServerRequest
public abstract class ServerRequest
extends Object
DynamicImplementation
has already been deprecated in java 1.2
version.
Method Summary | |
void | |
abstract Context |
|
void | |
String |
|
String |
|
void | |
void | |
void |
|
void |
|
Methods inherited from class java.lang.Object | |
clone , equals , extends Object> getClass , finalize , hashCode , notify , notifyAll , toString , wait , wait , wait |
public void arguments(NVList args)
Should specify the method parameter types and retrieve the values that must be passed to the method being called. Following the 1.4 specification, it does not, and must be overridden to get functionality.
- Parameters:
args
- the method parameters.
public void except(Any exc)
Deprecated. since 1.2.
This method is deprecated, useset_exception(Any)
(same parameter).
public String op_name()
Deprecated. since 1.2
This method is deprecated, useoperation()
(same parameter).
public String operation()
Should return the name of the operation (method) being invoked. Following the 1.4 specification, it does not, and must be overridden to get functionality.
- Returns:
- the name of the operation being invoked. The object attribute access operations are called _get_<attribute_name> and _set_<attribute_name>.
public void params(NVList args)
Deprecated. since 1.2
This method is deprecated, usearguments(NVList)
(same parameter).
public void result(Any r)
Deprecated. since 1.2
This method is deprecated,set_result(Any)
(same parameter).
public void set_exception(Any exc)
Should set the exception that has been thrown during the method invocation. Following the 1.4 specification, it does not, and must be overridden to get functionality.
- Parameters:
exc
- the Any, holding the exception.
public void set_result(Any result)
Should specify the return value for the call. Following the 1.4 specification, it does not, and must be overridden to get functionality.
- Parameters:
result
- the return value.