Interface BundledRenderUnitFinder
- All Known Implementing Classes:
BundleRenderUnitFinderImpl
@ConsumerType
public interface BundledRenderUnitFinder
The
BundledScriptFinder finds the BundledRenderUnit corresponding to a certain chain of TypeProviders or
corresponding to a certain path-based BundledRenderUnitCapability.-
Method Summary
Modifier and TypeMethodDescription@Nullable BundledRenderUnitfindUnit(@NotNull org.osgi.framework.BundleContext context, @NotNull Set<TypeProvider> inheritanceChain, @NotNull Set<TypeProvider> allRelatedProviders) Retrieves the best matchingBundledRenderUnitfor the providedinheritanceChain, by scanning allTypeProviderbundles for the class or script capable of providing a rendering for resource type chain.@Nullable BundledRenderUnitfindUnit(@NotNull org.osgi.framework.BundleContext context, @NotNull TypeProvider provider, @NotNull Set<TypeProvider> allRelatedProviders) Retrieves a path-basedBundledRenderUnitfrom the passedprovider.
-
Method Details
-
findUnit
@Nullable @Nullable BundledRenderUnit findUnit(@NotNull @NotNull org.osgi.framework.BundleContext context, @NotNull @NotNull Set<TypeProvider> inheritanceChain, @NotNull @NotNull Set<TypeProvider> allRelatedProviders) Retrieves the best matchingBundledRenderUnitfor the providedinheritanceChain, by scanning allTypeProviderbundles for the class or script capable of providing a rendering for resource type chain.- Parameters:
context- the bundle context to use.inheritanceChain- the resource type chain; the set is ordered from the most specific resource type to the most generic oneallRelatedProviders- this is a super set, containing both theinheritanceChainbut also all the required providers; a required provider is a provider that's needed by aResourceTypein order to delegate rendering to it, but it's not extended by the sameResourceType- Returns:
- a
BundledRenderUnitif one was found,nullotherwise
-
findUnit
@Nullable @Nullable BundledRenderUnit findUnit(@NotNull @NotNull org.osgi.framework.BundleContext context, @NotNull @NotNull TypeProvider provider, @NotNull @NotNull Set<TypeProvider> allRelatedProviders) Retrieves a path-basedBundledRenderUnitfrom the passedprovider.- Parameters:
context- the bundle context to use.provider- the provider from which to retrieve the unitallRelatedProviders- this is a super set, containing both the providers connected through an inheritance relationship but also all the required providers; a required provider is a provider that's needed by aResourceTypein order to delegate rendering to it, but it's not extended by the sameResourceType- Returns:
- a
BundledRenderUnitif one was found,nullotherwise - See Also:
-