Package org.geoserver.security

Examples of org.geoserver.security.EditableUserDAO


     * @return the Restlet to handle requests
     */
    public Restlet createRoot() {
        Router router = new Router();

        EditableUserDAO eud = (EditableUserDAO) getApplicationContext()
                                                    .getBean("userDetailsService");
        // router.attach("/roles", new UserRestlet("Role Management Page"));
        router.attach("/user.{type}", new UserFinder(router.getContext(), eud));
        router.attach("/user", new UserFinder(router.getContext(), eud));
        router.attach("/user/{name}.{type}", new UserFinder(router.getContext(), eud));
View Full Code Here

TOP

Related Classes of org.geoserver.security.EditableUserDAO

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.