Package com.liferay.portlet

Examples of com.liferay.portlet.PortletSessionImpl


  public static void add(PortletRequest req, String key, Object value) {
    add(req.getPortletSession(), key, value);
  }

  public static void add(PortletSession ses, String key, Object value) {
    PortletSessionImpl sessImpl = (PortletSessionImpl) ses;
    Map messages = _getMessages(sessImpl.getSession());

    messages.put(key, value);
  }
View Full Code Here

TOP

Related Classes of com.liferay.portlet.PortletSessionImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.