boolean portalActive = ((portalEnabled != null) && portalEnabled.equals("true"));
if (portalActive && !isRecacheCall)
{
logger.info("---> Checking for portlet action");
PortalService service = new PortalService();
//TODO: catch PortalException?
boolean actionExecuted = service.service(getRequest(), getResponse());
// -- if an action was executed return NONE as a redirect is issued
if (actionExecuted)
{
logger.info("---> PortletAction was executed, returning NONE as a redirect has been issued");