Example usage for com.liferay.portal.kernel.servlet PortalMessages add

List of usage examples for com.liferay.portal.kernel.servlet PortalMessages add

Introduction

In this page you can find the example usage for com.liferay.portal.kernel.servlet PortalMessages add.

Prototype

public static void add(PortletRequest portletRequest, String key, Object value) 

Source Link

Usage

From source file:com.liferay.testmisc.portlet.TestPortlet.java

License:Open Source License

public void addPortalMessage(ActionRequest actionRequest, ActionResponse actionResponse) {

    PortalMessages.add(actionRequest, PortalMessages.KEY_JSP_PATH, "/portal_message/portal_message.jsp");

    PortalMessages.add(actionRequest, PortalMessages.KEY_PORTLET_ID, PortletKeys.TEST_MISC);
}