public interface TrackedResourceProvider
Modifier and Type | Method and Description |
---|---|
Collection<TrackedResource> |
getAllResources(HttpServletRequest request)
Gets all existing
tracked resources in the system. |
Collection<TrackedResource> |
getChangedResources(Date after,
HttpServletRequest request)
Gets the
tracked resources that have changed after a given time. |
Collection<TrackedResource> getAllResources(HttpServletRequest request)
tracked resources
in the system.
Returned Resources must use the CREATED
event type.request
- the current HTTP request.Collection<TrackedResource> getChangedResources(Date after, HttpServletRequest request)
tracked resources
that have changed after a given time.
This includes resources that were created, modified or deleted since that date.after
- the reference time to search changed resources.request
- the current HTTP request.after
date; an unsorted list of changed resources otherwise.