Package fr.openwide.core.wicket.more.console.common.model

Examples of fr.openwide.core.wicket.more.console.common.model.ConsoleMenuItem


    ConsoleConfiguration consoleConfiguration = ConsoleConfiguration.build("console");
    consoleConfiguration.addMenuSection(new ConsoleMenuSection("notificationMenuSection", "console.notifications",
        "notifications", ConsoleNotificationIndexPage.class));
   
    ConsoleMenuSection importMenuSection = new ConsoleMenuSection("importMenuSection", "console.import", "import", ConsoleImportProjectPage.class);
    importMenuSection.addMenuItem(new ConsoleMenuItem("importProjectMenuItem", "console.import.project", "project", ConsoleImportProjectPage.class));
    consoleConfiguration.addMenuSection(importMenuSection);
    consoleConfiguration.mountPages(this);
   
    // Monitoring
    mountPage("/monitoring/db-access/", DatabaseMonitoringPage.class);
View Full Code Here

TOP

Related Classes of fr.openwide.core.wicket.more.console.common.model.ConsoleMenuItem

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.