org.omg.CORBA

Class DynamicImplementation

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 ObjectImpl. The class has become deprecated since the 1.4 release.
Method Summary
String[]_ids()
Returns the array of the repository ids, supported by this object.
voidinvoke(ServerRequest request)
Invoke the method of the CORBA object.

Method Detail

_ids

public String[] _ids()

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.

invoke

public void invoke(ServerRequest request)

Deprecated: since 1.4.

Invoke the method of the CORBA object. After converting the parameters, this method delegates call to the ObjectImpl.

Parameters: request the container for both passing and returing the parameters, also contains the method name and thrown exceptions.