Package org.geoserver.security

Examples of org.geoserver.security.ConstantFilterChain


       
        if ( filterChain.getRequestChainByName(PROXYRECEPTORCHAIN) != null)
            return;
       
        RequestFilterChain casChain =
            new ConstantFilterChain(GeoServerCasConstants.CAS_PROXY_RECEPTOR_PATTERN,
                    GeoServerCasConstants.CAS_PROXY_RECEPTOR_PATTERN+"/");
        casChain.setFilterNames(pgtCallback.getName());
        casChain.setName(PROXYRECEPTORCHAIN);
        filterChain.getRequestChains().add(0,casChain);
    }
View Full Code Here

TOP

Related Classes of org.geoserver.security.ConstantFilterChain

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.