Package org.apache.cocoon.webapps.authentication.components

Examples of org.apache.cocoon.webapps.authentication.components.AuthenticationManager.testMedia()


    public boolean select (String expression, Map objectModel, Parameters parameters) {
        AuthenticationManager authManager = null;
        boolean result;
        try {
            authManager = (AuthenticationManager) this.manager.lookup( AuthenticationManager.ROLE );
            result = authManager.testMedia(objectModel, expression);
        } catch (Exception local) {
            // ignore me
            result = false;
        } finally {
            this.manager.release( authManager );
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.