public void start(final BundleContext context) throws Exception {
tracker = new ServiceTracker(context, Command.class.getName(), new ServiceTrackerCustomizer() {
public Object addingService(ServiceReference ref) {
Command command = (Command) context.getService(ref);
startTelnet(context, command);
return command;
}
public void modifiedService(ServiceReference ref, Object service) {