Package org.apache.wicket.util.file
Interface IResourceFinder
-
- All Known Implementing Classes:
ClassPathResourceFinder
,Path
,WebApplicationPath
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface IResourceFinder
Knows how to find resources.- Author:
- jcompagner
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IResourceStream
find(Class<?> clazz, String pathname)
Looks for a given pathname along this path
-
-
-
Method Detail
-
find
IResourceStream find(Class<?> clazz, String pathname)
Looks for a given pathname along this path- Parameters:
clazz
- The class requesting the resource streampathname
- The filename with possible path- Returns:
- The resource stream
-
-