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.


Method Index

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

Methods

o 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
o objectToKey
 public abstract byte[] objectToKey(Object object)
Returns the object ID as a String for this object.
Parameters:
object - the target object
o 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