158159160161162163164165166167168
break; case STATUS: task = new StatusAction(in, out); break; case REFRESH: task = new RefreshAction(in, out); break; } if (task == null) {
109110111112113114115
public void refresh() throws IOException, BundleException { if (socket == null) throw new IllegalStateException("Not connected"); new RefreshAction(in, out).client(); }