Package org.exoplatform.portal.config.model.Page

Examples of org.exoplatform.portal.config.model.Page.PageSet


      }
   }

   public void createPage(NewPortalConfig config, String owner) throws Exception
   {
      PageSet pageSet = getConfig(config, owner, "pages", PageSet.class);
      if (pageSet == null)
      {
         return;
      }
      ArrayList<Page> list = pageSet.getPages();
      for (Page page : list)
      {
         dataStorage_.create(page);
      }
   }
View Full Code Here

TOP

Related Classes of org.exoplatform.portal.config.model.Page.PageSet

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.