// get all the feeds that pass the predicate check
Set<Resource> resources = getResources(PropertyHelper.getReadRequest(), predicate);
for (Resource resource : resources) {
// delete all the matching feeds with the property values from the request
service.deleteFeed((String) resource.getPropertyValue(FEED_NAME_PROPERTY_ID));
}
return new RequestStatusImpl(null);
}
@Override