Package org.apache.deltaspike.core.api.scope

Examples of org.apache.deltaspike.core.api.scope.ConversationGroup


        }

        Bean<?> bean = (Bean<?>) contextual;

        //don't cache it (due to the support of different producers)
        ConversationGroup conversationGroupAnnotation = findConversationGroupAnnotation(bean);

        Class<?> conversationGroup;
        if (conversationGroupAnnotation != null)
        {
            conversationGroup = conversationGroupAnnotation.value();
        }
        else
        {
            conversationGroup = bean.getBeanClass();
        }
View Full Code Here

TOP

Related Classes of org.apache.deltaspike.core.api.scope.ConversationGroup

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.