Class ViewScopeContext

  • All Implemented Interfaces:
    javax.enterprise.context.spi.Context

    @Typed
    public class ViewScopeContext
    extends Object
    implements javax.enterprise.context.spi.Context
    CDI Context to handle @ViewScoped beans.
    Author:
    Leonardo Uribe
    • Constructor Detail

      • ViewScopeContext

        public ViewScopeContext​(javax.enterprise.inject.spi.BeanManager beanManager)
    • Method Detail

      • getCurrentViewScopeId

        public String getCurrentViewScopeId​(boolean create)
      • getScope

        public Class<? extends Annotation> getScope()
        Specified by:
        getScope in interface javax.enterprise.context.spi.Context
      • isActive

        public boolean isActive()
        The WindowContext is active once a current windowId is set for the current Thread.
        Specified by:
        isActive in interface javax.enterprise.context.spi.Context
        Returns:
      • get

        public <T> T get​(javax.enterprise.context.spi.Contextual<T> bean)
        Specified by:
        get in interface javax.enterprise.context.spi.Context
      • get

        public <T> T get​(javax.enterprise.context.spi.Contextual<T> bean,
                         javax.enterprise.context.spi.CreationalContext<T> creationalContext)
        Specified by:
        get in interface javax.enterprise.context.spi.Context
      • destroy

        public boolean destroy​(javax.enterprise.context.spi.Contextual bean)
        Destroy the Contextual Instance of the given Bean.
        Parameters:
        bean - dictates which bean shall get cleaned up
        Returns:
        true if the bean was destroyed, false if there was no such bean.
      • destroyAllActive

        public void destroyAllActive()
        destroys all the Contextual Instances in the Storage returned by getContextualStorage(boolean).
      • checkActive

        protected void checkActive()
        Make sure that the Context is really active.
        Throws:
        javax.enterprise.context.ContextNotActiveException - if there is no active Context for the current Thread.