Package org.jasig.portal.events

Examples of org.jasig.portal.events.PortletActionExecutionEvent


    @Override
    public boolean supports(PortalEvent event)
    {
        if(event instanceof PortletActionExecutionEvent)
        {
            PortletActionExecutionEvent paee = (PortletActionExecutionEvent)event;
            if(paee.getFname().equals(TARGET_FNAME))
            {
                Map<String,List<String>> params = paee.getParameters();
                if(params.containsKey(TARGET_PARAM))
                {
                    if((params.get(TARGET_PARAM) != null) && !params.get(TARGET_PARAM).isEmpty())
                    {
                        if(!StringUtils.isBlank(params.get(TARGET_PARAM).get(0)))
View Full Code Here

TOP

Related Classes of org.jasig.portal.events.PortletActionExecutionEvent

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.