Uses of Interface
org.int4.dirk.spi.scope.ScopeResolver
-
Packages that use ScopeResolver Package Description org.int4.dirk.cdi Provides CDI style injection.org.int4.dirk.core.definition Provides internal core definition classes for the Dirk injection framework.org.int4.dirk.di Provides Dirk style injection.org.int4.dirk.jakarta Provides Jakarta style injection.org.int4.dirk.jsr330 Provides JSR-330 style injection (superseded by Jakarta).org.int4.dirk.library Provides standard extensions and strategy implementations for constructing custom injectors.org.int4.dirk.spi.scope Provides the interface for custom scope resolvers. -
-
Uses of ScopeResolver in org.int4.dirk.cdi
Methods in org.int4.dirk.cdi with parameters of type ScopeResolver Modifier and Type Method Description static InjectorInjectors. autoDiscovering(ScopeResolver... scopeResolvers)Creates anInjectorwith auto discovery activated and the givenScopeResolvers.static InjectorInjectors. manual(ScopeResolver... scopeResolvers)Creates anInjectorwhich must be manually configured with the givenScopeResolvers. -
Uses of ScopeResolver in org.int4.dirk.core.definition
Classes in org.int4.dirk.core.definition that implement ScopeResolver Modifier and Type Class Description classExtendedScopeResolverWrapper forScopeResolverwith additional information useful for the internal workings of the injector framework.Constructors in org.int4.dirk.core.definition with parameters of type ScopeResolver Constructor Description ExtendedScopeResolver(ScopeResolver delegate, boolean isPseudoScope, boolean isDependentScope)Constructs a new instance. -
Uses of ScopeResolver in org.int4.dirk.di
Methods in org.int4.dirk.di with parameters of type ScopeResolver Modifier and Type Method Description static InjectorInjectors. autoDiscovering(ScopeResolver... scopeResolvers)Creates anInjectorwith auto discovery activated and the givenScopeResolvers.static InjectorInjectors. manual(ScopeResolver... scopeResolvers)Creates anInjectorwhich must be manually configured with the givenScopeResolvers. -
Uses of ScopeResolver in org.int4.dirk.jakarta
Methods in org.int4.dirk.jakarta with parameters of type ScopeResolver Modifier and Type Method Description static InjectorInjectors. autoDiscovering(ScopeResolver... scopeResolvers)Creates anInjectorwith auto discovery activated and the givenScopeResolvers.static InjectorInjectors. manual(ScopeResolver... scopeResolvers)Creates anInjectorwhich must be manually configured with the givenScopeResolvers. -
Uses of ScopeResolver in org.int4.dirk.jsr330
Methods in org.int4.dirk.jsr330 with parameters of type ScopeResolver Modifier and Type Method Description static InjectorInjectors. autoDiscovering(ScopeResolver... scopeResolvers)Creates anInjectorwith auto discovery activated and the givenScopeResolvers.static InjectorInjectors. manual(ScopeResolver... scopeResolvers)Creates anInjectorwhich must be manually configured with the givenScopeResolvers. -
Uses of ScopeResolver in org.int4.dirk.library
Classes in org.int4.dirk.library that implement ScopeResolver Modifier and Type Class Description classSingletonScopeResolverScope resolver for singleton scope. -
Uses of ScopeResolver in org.int4.dirk.spi.scope
Classes in org.int4.dirk.spi.scope that implement ScopeResolver Modifier and Type Class Description classAbstractScopeResolver<S>Abstract base implementation of aScopeResolverwhich manages a map of instances per scope.
-