Interface ResourceChangeList
-
- All Superinterfaces:
java.util.Collection<ResourceChange>
,java.lang.Iterable<ResourceChange>
,java.util.List<ResourceChange>
@ProviderType public interface ResourceChangeList extends java.util.List<ResourceChange>
An instance ofResourceChangeList
is passed toResourceChangeListener.onChange(List)
to pass in additional information like the search path.- Since:
- 1.2.0 (Sling API Bundle 2.15.0)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String[]
getSearchPath()
Returns the search path used by the resource resolving.-
Methods inherited from interface java.util.List
add, add, addAll, addAll, clear, contains, containsAll, equals, get, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, size, sort, spliterator, subList, toArray, toArray
-
-
-
-
Method Detail
-
getSearchPath
java.lang.String[] getSearchPath()
Returns the search path used by the resource resolving.Each entry in the array is an absolute path terminated with a slash character. Thus to create an absolute path from a search path entry and a relative path, the search path entry and relative path may just be concatenated.
- Returns:
- The array of search paths
- See Also:
ResourceResolver.getSearchPath()
-
-