mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
Added API methods to query AVM store properties by key pattern.
Cleaned up some warnings in AVMInterpreter. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/BRANCHES/WCM-DEV2/root@3765 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -47,6 +47,21 @@ public interface AVMStorePropertyDAO
|
||||
* @return A List of properties associated with the store.
|
||||
*/
|
||||
public List<AVMStoreProperty> get(AVMStore store);
|
||||
|
||||
/**
|
||||
* Query store properties by key pattern.
|
||||
* @param store The store.
|
||||
* @param keyPattern An sql 'like' pattern wrapped up in a QName
|
||||
* @return A List of matching AVMStoreProperties.
|
||||
*/
|
||||
public List<AVMStoreProperty> queryByKeyPattern(AVMStore store, QName keyPattern);
|
||||
|
||||
/**
|
||||
* Query all stores' properties by key pattern.
|
||||
* @param keyPattern The sql 'like' pattern wrapped up in a QName
|
||||
* @return A List of match AVMStoreProperties.
|
||||
*/
|
||||
public List<AVMStoreProperty> queryByKeyPattern(QName keyPattern);
|
||||
|
||||
/**
|
||||
* Update a modified property.
|
||||
|
Reference in New Issue
Block a user