mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Another pair of convenience methods for AttributeService:
removeEntries, which removes map entries by query. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@5806 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -54,5 +54,12 @@ public interface AttributeDAO
|
||||
* @param query The AttrQuery.
|
||||
* @return A List of key, attribute value pairs.
|
||||
*/
|
||||
List<Pair<String,Attribute>> find(MapAttribute map, AttrQuery query);
|
||||
public List<Pair<String,Attribute>> find(MapAttribute map, AttrQuery query);
|
||||
|
||||
/**
|
||||
* Delete entries from a map that match the given query.
|
||||
* @param map
|
||||
* @param query
|
||||
*/
|
||||
public void delete(MapAttribute map, AttrQuery query);
|
||||
}
|
||||
|
Reference in New Issue
Block a user