217218219220221222223224225226227
ObjectInputStream in = null; try { in = new Base64ObjectInputStream(clientData); int count = in.readInt(); for (int i = 0; i < count; i++) {
464465466467468469470471472473474
Component component = null; try { ois = new Base64ObjectInputStream(actionsBase64); while (true) { String componentId = ois.readUTF(); ComponentAction action = (ComponentAction) ois.readObject();