String actionsBase64 = _paramLookup.getParameter(FORM_DATA);
try
{
ObjectInputStream ois = new Base64ObjectInputStream(actionsBase64);
while (true)
{
String componentId = ois.readUTF();
ComponentAction action = (ComponentAction) ois.readObject();
Component component = _source.getComponent(componentId);
action.execute(component);
}