Package org.jasig.portal.events.aggr.portlets

Examples of org.jasig.portal.events.aggr.portlets.AggregatedPortletMapping


        final IAuthorizationPrincipal ap = authService.newPrincipal(ei.getKey(), ei.getType());
       
        final Map<String, PortletUsage> resultBuilder = new HashMap<String, PortletUsage>();
       
        for (final PortletLayoutAggregation aggregation : aggregations) {
            final AggregatedPortletMapping portlet = aggregation.getPortletMapping();
            final String fname = portlet.getFname();
            PortletUsage portletUsage = resultBuilder.get(fname);
            if (portletUsage == null) {
                final IPortletDefinition portletDefinition = this.portletDefinitionDao.getPortletDefinitionByFname(fname);
               
                if (portletDefinition == null || !ap.canSubscribe(portletDefinition.getPortletDefinitionId().getStringId())) {
View Full Code Here

TOP

Related Classes of org.jasig.portal.events.aggr.portlets.AggregatedPortletMapping

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.