Package org.fenixedu.bennu.core.util.CoreConfiguration

Examples of org.fenixedu.bennu.core.util.CoreConfiguration.CasConfig


        HttpSession session = request.getSession(false);

        ActionForward result = null;

        final CasConfig casConfig = CoreConfiguration.casConfig();

        if (casConfig != null && casConfig.isCasEnabled()) {
            if (request.getParameter("logoutFromCAS") != null && request.getParameter("logoutFromCAS").equals("true")) {
                Authenticate.logout(session);
                result = new ActionForward("/commons/blankWithTitle.jsp");
            } else {
                result = getCasLogoutActionForward(casConfig);
View Full Code Here

TOP

Related Classes of org.fenixedu.bennu.core.util.CoreConfiguration.CasConfig

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.