Package org.geoserver.security.password

Examples of org.geoserver.security.password.UserDetailsPasswordWrapper


        try {
            mpw= manager.getMasterPassword();
            String a1 = encodePasswordInA1Format(GeoServerUser.ROOT_USERNAME,
                    GeoServerSecurityManager.REALM, mpw);
           
            return new UserDetailsPasswordWrapper(
                    GeoServerUser.createRoot(), a1);
        }
        finally {
            if (mpw!=null)
                manager.disposePassword(mpw);
View Full Code Here

TOP

Related Classes of org.geoserver.security.password.UserDetailsPasswordWrapper

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.