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:
Britt Park
2006-09-12 05:43:36 +00:00
parent be6a222554
commit 37b5003ae4
9 changed files with 213 additions and 9 deletions

View File

@@ -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.