143144145146147148149150151152153
{ case INSTALL: task = new InstallAction(in, out); break; case START: task = new StartAction(in, out); break; case STOP: task = new StopAction(in, out); break; case UNINSTALL:
123124125126127128129
public void start(long bundle) throws IOException, BundleException { if (socket == null) throw new IllegalStateException("Not connected"); new StartAction(in, out).client(bundle); }