Package org.geoserver.security.config

Examples of org.geoserver.security.config.J2eeAuthenticationBaseFilterConfig


        };
        for (String fName : listFilters()) {
            SecurityFilterConfig fConfig = loadFilterConfig(fName, mh);
            if (fConfig != null) {
                if (fConfig instanceof J2eeAuthenticationBaseFilterConfig) {
                    J2eeAuthenticationBaseFilterConfig j2eeConfig = (J2eeAuthenticationBaseFilterConfig) fConfig;
                    // add default J2EE RoleSource that was the only one possible
                    // before 2.5
                    if (j2eeConfig.getRoleSource() == null) {
                        j2eeConfig.setRoleSource(J2EERoleSource.J2EE);
                    }
                } else if (fConfig instanceof PreAuthenticatedUserNameFilterConfig) {
                    PreAuthenticatedUserNameFilterConfig userNameConfig = (PreAuthenticatedUserNameFilterConfig) fConfig;
                    RoleSource rs = userNameConfig.getRoleSource();
                    if (rs != null) {
View Full Code Here

TOP

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

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.