Package org.apache.pluto.spi.optional

Examples of org.apache.pluto.spi.optional.UserInfoService


     * and fitlers it for the attributes in the portlet descriptor.
     */
    protected Map createUserInfoMap(PortletRequest portletRequest, PortletWindow portletWindow) {
        final Map userInfoMap = new HashMap();
        try {
            final UserInfoService userInfoService = this.optionalContainerServices.getUserInfoService();

            //PLUTO-388 fix:
            //The PortletWindow is currently ignored in the implementing class
            // See: org.apache.pluto.core.DefaultUserInfoService
            final Map allMap = userInfoService.getUserInfo(portletRequest, portletWindow);

            //PLUTO-477 null attribute maps are ok
            if (null == allMap) {
                return null;
            }
View Full Code Here

TOP

Related Classes of org.apache.pluto.spi.optional.UserInfoService

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.