149150151152153154155156157158159
break; case STOP: task = new StopAction(in, out); break; case UNINSTALL: task = new UninstallAction(in, out); break; case UPDATE: task = new UpdateAction(in, out); break; case STATUS:
137138139140141142143
public void uninstall(long bundle) throws IOException, BundleException { if (socket == null) throw new IllegalStateException("Not connected"); new UninstallAction(in, out).client(bundle); }