Interface MenuEntryServiceLocal
-
- All Superinterfaces:
CRUDService<MenuEntryDTO,MenuEntryData,MenuEntryDataParams>,CRUDServiceLocal<MenuEntry,MenuEntryDTO,MenuEntryData,MenuEntryDataParams>,MenuEntryService,Service
public interface MenuEntryServiceLocal extends CRUDServiceLocal<MenuEntry,MenuEntryDTO,MenuEntryData,MenuEntryDataParams>, MenuEntryService
Local interface forMenuEntryService
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<? extends MenuEntryVO>getMenu(Frontend frontend)Returns the menu entries for the logged user.List<? extends MenuEntry>list(Frontend frontend, Configuration configuration, boolean rootOnly, Collection<ContentItemVisibility> visibilities, boolean includeFloatingPages)Lists the pages applicable to the given frontend and visibilityList<MenuItem>listByWizard(MenuItemWizard wizard)Returns the menu items that show the given wizard, if anyList<SitemapItemVO>listForSitemap()Returns the sitemap entries for all enabled menu items of type content and floating pages in this network-
Methods inherited from interface org.cyclos.services.CRUDService
getData, getDataForNew, load, remove, removeAll, save
-
Methods inherited from interface org.cyclos.impl.CRUDServiceLocal
find, findAll, getEntityClass, newEntity, remove, removeAll, saveEntity, saveSkippingEntityLog, toDTO, toEntity, validate
-
Methods inherited from interface org.cyclos.services.contentmanagement.MenuEntryService
getListData, getMenuItemDetails, list, move
-
-
-
-
Method Detail
-
getMenu
List<? extends MenuEntryVO> getMenu(Frontend frontend)
Returns the menu entries for the logged user. Not the same as converting the list ofMenuEntrytoMenuEntryVO, but each element is converted to it's corresponding vo, likeMenuGroupVOandMenuItemVO, and only visible entries are returned.
-
list
List<? extends MenuEntry> list(Frontend frontend, Configuration configuration, boolean rootOnly, Collection<ContentItemVisibility> visibilities, boolean includeFloatingPages)
Lists the pages applicable to the given frontend and visibility
-
listByWizard
List<MenuItem> listByWizard(MenuItemWizard wizard)
Returns the menu items that show the given wizard, if any
-
listForSitemap
List<SitemapItemVO> listForSitemap()
Returns the sitemap entries for all enabled menu items of type content and floating pages in this network
-
-