Name

ActivationInstantiator

Synopsis

This interface represents an object that is responsible for activating objects, using its newInstance() method. The arguments to the method provide the ActivationID for the object within the activation system, and the ActivationDesc provided for the object when it was registered, which includes the information needed to activate the object. The ActivationGroup class implements this interface, and concrete subclasses of ActivationGroup must provide an implementation of the newInstance() method.

                  Returned By
public interface ActivationInstantiator extends Remote {
// Public Instance Methods
   public abstract MarshalledObject newInstance(
        ActivationID id, 
        ActivationDesc desc) throws ActivationException, RemoteException;  
}

Implementations

ActivationGroup, ActivationGroup_Stub

Passed To

ActivationSystem.activeGroup()

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.