Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.rmi.activation.ActivationID

Uses of ActivationID in java.rmi.activation
 

Fields in java.rmi.activation declared as ActivationID
(package private)  ActivationID Activatable.id
          The object activation id.
 

Methods in java.rmi.activation that return ActivationID
 ActivationID ActivationSystem.registerObject(ActivationDesc desc)
          Registers the activation descriptor and creates (and returns) its activation identifier.
protected  ActivationID Activatable.getID()
          Get the objects activation identifier.
(package private) static ActivationID Activatable.obtainId(ActivationDesc descriptor)
          Obtain the activation Id from the activation descriptor by registering within the current group.
static ActivationID Activatable.exportObject(java.rmi.Remote obj, java.lang.String location, java.rmi.MarshalledObject data, boolean restart, int port)
          Register and export the object that activatable object that is not derived from the Activatable super class.
static ActivationID Activatable.exportObject(java.rmi.Remote obj, java.lang.String location, java.rmi.MarshalledObject data, boolean restart, int port, java.rmi.server.RMIClientSocketFactory csf, java.rmi.server.RMIServerSocketFactory ssf)
          Register and export the object that activatable object that is not derived from the Activatable super class.
 

Methods in java.rmi.activation with parameters of type ActivationID
 java.rmi.MarshalledObject Activator.activate(ActivationID id, boolean force)
          Activate the object, associated with the given activation identifier.
 void ActivationSystem.unregisterObject(ActivationID id)
          Removes the stored identifier-description map entry.
 ActivationDesc ActivationSystem.setActivationDesc(ActivationID id, ActivationDesc desc)
          Replace the activation descriptor for the object with the given activation id.
 ActivationDesc ActivationSystem.getActivationDesc(ActivationID id)
          Get the activation descriptor for the object with the given activation id.
 void ActivationMonitor.activeObject(ActivationID id, java.rmi.MarshalledObject obj)
          Informs that the object is now active.
 void ActivationMonitor.inactiveObject(ActivationID id)
          Informs that the object is not inactive.
 java.rmi.MarshalledObject ActivationInstantiator.newInstance(ActivationID id, ActivationDesc desc)
          Creates and instantiate a new remote object.
 java.rmi.MarshalledObject ActivationGroup_Stub.newInstance(ActivationID id, ActivationDesc desc)
          Stub method for ActivationGroup.newInstance().
abstract  void ActivationGroup.activeObject(ActivationID id, java.rmi.Remote obj)
          The method is called when the object is exported.
 boolean ActivationGroup.inactiveObject(ActivationID id)
          Notifies the monitor about the object being inactivated.
protected  void ActivationGroup.activeObject(ActivationID id, java.rmi.MarshalledObject mObject)
          Makes the call back to the groups ActivationMonitor.
static boolean Activatable.inactive(ActivationID id)
          Inactivates and unexports the object.
static void Activatable.unregister(ActivationID id)
          Unregister the object (the object will no longer be activable with that id)
static java.rmi.Remote Activatable.exportObject(java.rmi.Remote obj, ActivationID id, int port)
          During activation, this exportObject method should be invoked explicitly by the activatable object, that does is not derived from the Activatable class.
static java.rmi.Remote Activatable.exportObject(java.rmi.Remote obj, ActivationID id, int port, java.rmi.server.RMIClientSocketFactory csf, java.rmi.server.RMIServerSocketFactory ssf)
          During activation, this exportObject method should be invoked explicitly by the activatable object, that does is not derived from the Activatable class.
static java.rmi.Remote Activatable.export(ActivationID id, java.rmi.Remote obj, int port, java.rmi.server.RMIServerSocketFactory serverSocketFactory)
          Create and export the new remote object, making it available at the given port, using sockets, produced by the specified factories.
static java.rmi.server.ObjID Activatable.makeId(ActivationID aid)
          Make the object ID from the activation ID.
(package private) static java.rmi.Remote Activatable.toStub(ActivationID anId, java.lang.Class stubFor)
          Connect the object to the UnicastServer (export), but not activate it.
 

Constructors in java.rmi.activation with parameters of type ActivationID
Activatable(ActivationID anId, int port)
          Creates the new instance of activatable with the given activation id and is listening at the given port.
Activatable(ActivationID anId, int port, java.rmi.server.RMIClientSocketFactory csf, java.rmi.server.RMIServerSocketFactory ssf)
          Creates the new instance of activatable with the given activation id and is listening at the given port, using the specified client and server sockets factories.