Package org.geoserver.security.config

Examples of org.geoserver.security.config.J2eeRoleServiceConfig


public  class GeoServerJ2eeRoleServiceTest extends AbstractSecurityServiceTest {
        

   @Override
    public GeoServerRoleService createRoleService(String name) throws Exception {
        J2eeRoleServiceConfig config = new J2eeRoleServiceConfig();
        config.setName(name);
        config.setClassName(GeoServerJ2eeRoleService.class.getName());
        getSecurityManager().saveRoleService(config);
        //System.out.println(getDataDirectory().root().getAbsoluteFile());
        return null;
    }
View Full Code Here

TOP

Related Classes of org.geoserver.security.config.J2eeRoleServiceConfig

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.