Package org.exoplatform.portal.application.PortletPreferences

Examples of org.exoplatform.portal.application.PortletPreferences.PortletPreferencesSet


      }
   }

   public void createPortletPreferences(NewPortalConfig config, String owner) throws Exception
   {
      PortletPreferencesSet portletSet = getConfig(config, owner, "portlet-preferences", PortletPreferencesSet.class);
      if (portletSet == null)
      {
         return;
      }
      ArrayList<PortletPreferences> list = portletSet.getPortlets();
      for (PortletPreferences portlet : list)
      {
         dataStorage_.save(portlet);
      }
   }
View Full Code Here


      UnmarshalledObject<PortletPreferencesSet> obj = getConfig(config, owner, "portlet-preferences", PortletPreferencesSet.class);
      if (obj == null)
      {
         return;
      }
      PortletPreferencesSet portletSet = obj.getObject();
      ArrayList<PortletPreferences> list = portletSet.getPortlets();
      for (PortletPreferences portlet : list)
      {
         dataStorage_.save(portlet);
      }
   }
View Full Code Here

TOP

Related Classes of org.exoplatform.portal.application.PortletPreferences.PortletPreferencesSet

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.