Package org.exoplatform.portal.pom.data

Examples of org.exoplatform.portal.pom.data.NavigationData


   @Override
   public NavigationData build()
   {
      List<NavigationNodeData> children = buildNavigationChildren();
      return new NavigationData(storageId, ownerType, ownerId, priority, children);
   }
View Full Code Here


      return new Page(delegate.clonePage(key, cloneKey));
   }

   public PageNavigation getPageNavigation(String ownerType, String id) throws Exception
   {
      NavigationData data = delegate.getPageNavigation(new NavigationKey(ownerType, id));
      return data != null ? new PageNavigation(data) : null;
   }
View Full Code Here

   }

   public PageNavigation getPageNavigation(String fullId) throws Exception
   {
      NavigationKey key = NavigationKey.create(fullId);
      NavigationData data = delegate.getPageNavigation(key);
      return data != null ? new PageNavigation(data) : null;
   }
View Full Code Here

TOP

Related Classes of org.exoplatform.portal.pom.data.NavigationData

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.