public void processAction(ActionRequest req, ActionResponse resp) throws PortletException, IOException {
try {
PortletActionBridge requestBridge = new PortletActionBridge(bridge, req, resp, config);
requestBridge.invoke();
requestBridge.send();
}
catch (Throwable e) {
rethrow(e);
}
}