public ActivationMonitor activeGroup(ActivationGroupID id, ActivationInstantiator group, long incarnation) throws ActivationException, UnknownGroupException, RemoteException { checkShutdown(); RegistryImpl.checkAccess("ActivationSystem.activeGroup"); getGroupEntry(id).activeGroup(group, incarnation); return monitor; }
public ActivationMonitor activeGroup(ActivationGroupID id, ActivationInstantiator group, long incarnation) throws ActivationException, UnknownGroupException, RemoteException { checkShutdown(); // RegistryImpl.checkAccess() is done in the SameHostOnlyServerRef // during unmarshallCustomData and is not applicable to local access. getGroupEntry(id).activeGroup(group, incarnation); return monitor; }
/** @inheritDoc */ public ActivationMonitor activeGroup(ActivationGroupID id, ActivationInstantiator group, long incarnation) throws UnknownGroupException, ActivationException, RemoteException { return super.activeGroup(id, group, incarnation); }
/** * Returns the activation monitor (THIS) and remebers the instantiator, used * by that group. */ public ActivationMonitor activeGroup(ActivationGroupID id, ActivationInstantiator group, long incarnation) throws UnknownGroupException, ActivationException, RemoteException { groupInstantiators.put(id, group); return this; }
public ActivationMonitor activeGroup(ActivationGroupID gID, ActivationInstantiator group, long incarnation) throws UnknownGroupException, ActivationException { waitStartup(); // rmi.log.46=Rmid.activeGroup: {0}, {1}, {2} rLog.log(commonDebugLevel, Messages.getString("rmi.log.46", //$NON-NLS-1$ new Object[]{gID, group, incarnation})); // rmi.log.47=groupID2groupInfo_H = {0} rLog.log(commonDebugLevel, Messages.getString("rmi.log.47", //$NON-NLS-1$ groupInfoByGroupId)); ActivationGroupInfo agi = (ActivationGroupInfo) groupInfoByGroupId .get(gID); // rmi.log.48=Rmid.activeGroup group info = {0} rLog.log(commonDebugLevel, Messages.getString("rmi.log.48", agi));//$NON-NLS-1$ if (agi == null) { // rmi.2F=Group is not registered: {0} throw new UnknownGroupException(Messages.getString("rmi.2F", gID)); //$NON-NLS-1$ } else if (agi.isActive()) { // rmi.30=Group is already active: {0} throw new ActivationException(Messages.getString("rmi.30", gID)); //$NON-NLS-1$ } // rmi.log.49=ready to execute agi.active() rLog.log(commonDebugLevel, Messages.getString("rmi.log.49")); //$NON-NLS-1$ agi.active(group, incarnation); // rmi.log.4A=Rmid.activeGroup finished. rLog.log(commonDebugLevel, Messages.getString("rmi.log.4A")); //$NON-NLS-1$ return this; }
public ActivationMonitor activeGroup(ActivationGroupID gID, ActivationInstantiator aInst, long incarnation) throws UnknownGroupException, ActivationException, RemoteException { return null; }
public ActivationMonitor activeGroup(ActivationGroupID arg0, ActivationInstantiator arg1, long arg2) throws UnknownGroupException, ActivationException, RemoteException { return null; }