eu.ciechanowiec.sling.rocket.commons.ResourceAccess Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sling.rocket.commons Show documentation
Show all versions of sling.rocket.commons Show documentation
Common utilities used by Sling Rocket
package eu.ciechanowiec.sling.rocket.commons;
import org.apache.sling.api.resource.ResourceResolver;
import javax.jcr.Repository;
/**
* Provides full and unlimited access to Apache Sling resources, including the underlying {@link Repository}.
*/
@FunctionalInterface
public interface ResourceAccess {
/**
* Provides full and unlimited access to Apache Sling resources, including the underlying {@link Repository}.
* @return {@link ResourceResolver} that provides the resource access
*/
ResourceResolver acquireAccess();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy