Interface ParametrizableResourceProvider

    • Method Detail

      • getResource

        @Nullable
        @Nullable Resource getResource​(@NotNull
                                       @NotNull ResourceResolver resourceResolver,
                                       @NotNull
                                       @NotNull java.lang.String path,
                                       @NotNull
                                       @NotNull java.util.Map<java.lang.String,​java.lang.String> parameters)
        Deprecated.
        Returns a resource from this resource provider or null if the resource provider cannot find it. The path should have one of the ResourceProvider.ROOTS strings as its prefix. The resource provider must not return cached instances for a resource as the resource resolver will update the resource metadata of the resource at the end of the resolution process and this metadata might be different depending on the full path of resource resolution passed into the resource resolver.
        Parameters:
        resourceResolver - The ResourceResolver to which the returned Resource is attached.
        path - The full path of the resource.
        parameters - A map of additional parameters, the map contains at least one parameter.
        Returns:
        null If this provider does not have a resource for the path.
        Throws:
        SlingException - may be thrown in case of any problem creating the Resource instance.
        See Also:
        ResourceProvider.getResource(ResourceResolver, String)