Package org.jboss.portletbridge.seam

Examples of org.jboss.portletbridge.seam.PortletScope


               if (null == component) {
                   return PortletSession.PORTLET_SCOPE;
               }

               final PortletScope portletScope =
                                   component.getBeanClass().getAnnotation(PortletScope.class);


               return null != portletScope
                      ? portletScope.value().getScopeType()
                      : PortletSession.PORTLET_SCOPE;

            }else{
                return PortletSession.PORTLET_SCOPE;
            }
View Full Code Here

TOP

Related Classes of org.jboss.portletbridge.seam.PortletScope

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.