All Packages Class Hierarchy This Package Previous Next Index
Interface COM.ibm.CORBA.iiop.ObjectResolver
-
public interface ObjectResolver
This interface defines the two methods needed to deal with object references.
The implementation of these methods will be provided by the application
developer or service provider.

-
finalize()
-
Notifies ObjectResolver of ORB finialization to allow the object state
to be preserved.
-
keyToObject(byte[])
-
Returns the object that is referenced by the key provided.
-
objectToKey(Object)
-
Returns the object ID as a String for this object.

keyToObject
public abstract Object keyToObject(byte byteKey[])
-
Returns the object that is referenced by the key provided.
-
Parameters:
-
key - a String representation of the object ID
objectToKey
public abstract byte[] objectToKey(Object object)
-
Returns the object ID as a String for this object.
-
Parameters:
-
object - the target object
finalize
public abstract void finalize()
Notifies ObjectResolver of ORB finialization to allow the object state
to be preserved.
-
Overrides:
-
finalize in class Object
All Packages Class Hierarchy This Package Previous Next Index