Skip to content
  • Projects
  • Groups
  • Snippets
  • Help

Codecrew / Moya

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 30
  • Merge Requests 2
  • Wiki
  • Snippets
  • Settings
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • moya
  • ..
  • beans
  • MenubeanLocal.java
  • Juho Juopperi's avatar
    Revert "Merge branch 'master' of dev.insomnia.fi:/data/bortal" · b2c3531d
    Whoptidoo
    
    This reverts commit 1e2afa40, reversing
    changes made to da1cc32d.
    Juho Juopperi committed May 12, 2012
    b2c3531d
MenubeanLocal.java 294 Bytes
BlameHistoryPermalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
package fi.insomnia.bortal.beans;

import java.util.List;

import javax.ejb.Local;

import fi.insomnia.bortal.model.MenuNavigation;

@Local
public interface MenubeanLocal {

	MenuNavigation getMenuNavigation(String url);

	List<MenuNavigation> getTopnavigations();

	void flushDefaultmenu();
}