RSS

Using PortletPreferences in Liferay

How to saving a portlet preferences in liferay:

private PortletPreferences portletPreferences;
private String criterioBusca="Something";

portletPreferences.setValue("criterioBusca", criterioBusca);
portletPreferences.setValue("fecha", fecha);
portletPreferences.setValue("categoriaHistorico", categoriaHistorico);
portletPreferences.store();

Getting the values from preferences:

private String fecha = "";
fecha = portletPreferences.getValue("fecha", null);