Package fiftyfive.wicket.shiro

Examples of fiftyfive.wicket.shiro.ShiroWicketPlugin


        // -- Configure error pages --
        getApplicationSettings().setPageExpiredErrorPage(getHomePage());
        getApplicationSettings().setInternalErrorPage(InternalServerErrorPage.class);
       
        // -- Shiro integration --
        new ShiroWicketPlugin().mountLoginPage("/login", LoginPage.class).install(this);
       
        // -- Configure custom request cycle handling --
        getRequestCycleListeners().add(new WicketRequestCycleListener());

        // -- Custom initialization goes here --
View Full Code Here


            @Override
            protected void init()
            {
                super.init();
                getMarkupSettings().setStripWicketTags(true);
                new ShiroWicketPlugin().install(this);
            }
        });
    }
View Full Code Here

TOP

Related Classes of fiftyfive.wicket.shiro.ShiroWicketPlugin

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.