Package com.liferay.portlet

Examples of com.liferay.portlet.PortletPreferencesWrapper


      (RenderRequest)req.getAttribute(WebKeys.JAVAX_PORTLET_REQUEST);

    PortletPreferences prefs = null;

    if (renderRequest != null) {
      PortletPreferencesWrapper prefsWrapper =
        (PortletPreferencesWrapper)renderRequest.getPreferences();

      prefs = prefsWrapper.getPreferencesImpl();
    }

    return prefs;
  }
View Full Code Here


  }

  public static void storePreferences(PortletPreferences prefs)
    throws IOException, ValidatorException {

    PortletPreferencesWrapper prefsWrapper =
      (PortletPreferencesWrapper)prefs;

    PortletPreferencesImpl prefsImpl =
      (PortletPreferencesImpl)prefsWrapper.getPreferencesImpl();

    prefsImpl.store();
  }
View Full Code Here

TOP

Related Classes of com.liferay.portlet.PortletPreferencesWrapper

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.