in src/main/java/org/apache/sling/fsprovider/internal/FsResourceProvider.java [143:176]
String webconsole_configurationFactory_nameHint() default
"{provider.fs.mode}: {" + ResourceProvider.PROPERTY_ROOT + "}";
}
// The location in the resource tree where the resources are mapped
private String providerRoot;
// The "root" file or folder in the file system
private File providerFile;
// The monitor to detect file changes.
private FileMonitor monitor;
// maps file system to resources
private FileResourceMapper fileMapper;
// cache for parsed content files
private ContentFileCache contentFileCache;
/**
* Returns a resource wrapping a file system file or folder for the given
* path. If the <code>path</code> is equal to the configured resource tree
* location of this provider, the configured file system file or folder is
* used for the resource. Otherwise the configured resource tree location
* prefix is removed from the path and the remaining relative path is used
* to access the file or folder. If no such file or folder exists, this
* method returns <code>null</code>.
*/
@Override
public Resource getResource(
final @NotNull ResolveContext<Object> ctx,
final @NotNull String path,
final @NotNull ResourceContext resourceContext,
final @Nullable Resource parent) {