Added new method to Java Person Service public API - getPeopleFilteredByProperty(QName propertyKey, Serializable propertyValue)

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@10211 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Glen Johnson
2008-08-02 17:17:05 +00:00
parent d368691efc
commit 009c223479
5 changed files with 82 additions and 0 deletions

View File

@@ -154,6 +154,16 @@ public interface PersonService
*/
@Auditable
public Set<NodeRef> getAllPeople();
/**
* Get people filtered by the given property name/value pair
*
* @param propertyKey property key of property to filter people by
* @param propertyValue property value of property to filter people by
* @return people filtered by the given property name/value pair
*/
@Auditable
public Set<NodeRef> getPeopleFilteredByProperty(QName propertyKey, Serializable propertyValue);
/**
* Return the container that stores people.