* @ejb.interface-method view-type="remote"
*/
public void start () throws CannotStartException,
AlreadyRunningException {
if (typedState() != NotRunningState.NOT_STARTED) {
throw new AlreadyRunningException
(toString() + " state is: " + state());
}
updateState (RunningState.RUNNING);
}