10701071107210731074107510761077107810791080
public Service removeService(String id) { Service service = getService(id); if (service != null) { service.stop(); services.remove(id); } return service; }
14431444144514461447144814491450145114521453
private void stopServices() { for (Iterator iter=services.values().iterator(); iter.hasNext(); ) { Service svc = (Service) iter.next(); svc.stop(); } } /** * You can call this method in order to send a message from your code into
10241025102610271028102910301031103210331034
13681369137013711372137313741375137613771378