Package org.apache.click.extras.security

Examples of org.apache.click.extras.security.RoleAccessController


     *
     * @return the root menu item defined in the WEB-INF/menu.xml file or menu.xml
     * in the root classpath
     */
    public static Menu getRootMenu() {
        return getRootMenu(new RoleAccessController());
    }
View Full Code Here


     * @return the root menu item defined in the WEB-INF/menu.xml file or menu.xml
     * in the root classpath
     */
    @Deprecated
    public static Menu getRootMenu() {
        return getRootMenu(new RoleAccessController());
    }
View Full Code Here

     * @return the root menu item defined in the WEB-INF/menu.xml file or menu.xml
     * in the root classpath
     */
    @Deprecated
    public static Menu getRootMenu() {
        return getRootMenu(new RoleAccessController());
    }
View Full Code Here

     * @return the root menu item defined in the WEB-INF/menu.xml file or menu.xml
     * in the root classpath
     */
    @Deprecated
    public static Menu getRootMenu() {
        return getRootMenu(new RoleAccessController());
    }
View Full Code Here

     * @return the cached root menu item defined in the WEB-INF/menu.xml file
     * or menu.xml in the root classpath
     */
    public Menu getRootMenu(Class<? extends Menu> menuClass) {
        return getRootMenu(DEFAULT_ROOT_MENU_NAME, DEFAULT_CONFIG_FILE,
            new RoleAccessController(), true, menuClass);
    }
View Full Code Here

     * @return the root menu item defined in the WEB-INF/menu.xml file or menu.xml
     * in the root classpath
     */
    public Menu getRootMenu(boolean cached) {
        return getRootMenu(DEFAULT_ROOT_MENU_NAME, DEFAULT_CONFIG_FILE,
            new RoleAccessController(), cached, null);
    }
View Full Code Here

     * @param fileName the fileName defining the menu definitions
     * @return the root menu item defined by the fileName under WEB-INF or the
     * classpath
     */
    public Menu getRootMenu(String name, String fileName) {
        return getRootMenu(name, fileName, new RoleAccessController(),
            true, null);
    }
View Full Code Here

     *
     * @return the root menu item defined in the WEB-INF/menu.xml file or menu.xml
     * in the root classpath
     */
    public static Menu getRootMenu() {
        return getRootMenu(new RoleAccessController());
    }
View Full Code Here

     * @return the root menu item defined in the WEB-INF/menu.xml file or menu.xml
     * in the root classpath
     */
    @Deprecated
    public static Menu getRootMenu() {
        return getRootMenu(new RoleAccessController());
    }
View Full Code Here

     * @return the cached root menu item defined in the WEB-INF/menu.xml file
     * or menu.xml in the root classpath
     */
    public Menu getRootMenu(Class<? extends Menu> menuClass) {
        return getRootMenu(DEFAULT_ROOT_MENU_NAME, DEFAULT_CONFIG_FILE,
            new RoleAccessController(), true, menuClass);
    }
View Full Code Here

TOP

Related Classes of org.apache.click.extras.security.RoleAccessController

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.