org.omg.CORBA
public class DynamicImplementation extends ObjectImpl
Deprecated: since 1.4.
This class was probably originally thinked as a base of all CORBA object implementations. However the code, generated by IDL to java compilers almost never use it, preferring to derive the object implementation bases directly from the {@link ObjectImpl}. The class has become deprecated since the 1.4 release.Method Summary | |
---|---|
void | invoke(ServerRequest request)
Invoke the method of the CORBA object. |
String[] | _ids()
Returns the array of the repository ids, supported by this object.
|
Deprecated: since 1.4.
Invoke the method of the CORBA object. After converting the parameters, this method delegates call to the {@link ObjectImpl#_invoke}.Parameters: request the container for both passing and returing the parameters, also contains the method name and thrown exceptions.
Deprecated: since 1.4.
Returns the array of the repository ids, supported by this object. In this implementation, the method must be overrridden to return a sendible object-specific information. The default method returns an empty array.Returns: the empty array, always.