Interface UriSchemeResourceFinderFactory
-
- All Known Implementing Classes:
BundleSchemeResourceFinderFactory
,FileSchemeResourceFinderFactory
,JarZipSchemeResourceFinderFactory
,VfsSchemeResourceFinderFactory
interface UriSchemeResourceFinderFactory
An interface for scanning URI-based resources and reporting those resources to a scanning listener.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResourceFinder
create(java.net.URI uri, boolean recursive)
Create newResourceFinder
for a given resource URI.java.util.Set<java.lang.String>
getSchemes()
Get the set of supported URI schemes.
-
-
-
Method Detail
-
getSchemes
java.util.Set<java.lang.String> getSchemes()
Get the set of supported URI schemes.- Returns:
- the supported URI schemes.
-
create
ResourceFinder create(java.net.URI uri, boolean recursive)
Create newResourceFinder
for a given resource URI.- Parameters:
uri
- resource URI.recursive
- defines whether a resource finder should recursively scan any recognized sub-resource URIs (value oftrue
) or not (value offalse
).- Returns:
- resource finder for a given URI.
-
-