public class WorkflowMessagePortlet extends JSPPortlet {
public void doView(RenderRequest req, RenderResponse res)
throws IOException, PortletException {
try {
Action a =
(Action) InstancePool.get(
"com.dotmarketing.portlets.workflowmessages.c.a.ViewWorkflowMessagesPortletAction");
a.run(req, res);
}
catch (ActionException ae) {
throw new PortletException(ae);
}