final String output = portletExecutionManager.getPortletHeadOutput(portletWindowId, this.request, this.response);
return CharacterDataEventImpl.create(output);
}
case PORTLET_CONTENT: {
final PortletContentPlaceholderEvent contentPlaceholderEvent = (PortletContentPlaceholderEvent)event;
final IPortletWindowId portletWindowId = contentPlaceholderEvent.getPortletWindowId();
final String output = portletExecutionManager.getPortletOutput(portletWindowId, this.request, this.response);
return CharacterDataEventImpl.create(output);
}