Added method to delete multiple child contexts for unique property contexts

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@16441 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2009-09-22 15:17:45 +00:00
parent 1935a73684
commit a48ac3deca
7 changed files with 113 additions and 32 deletions

View File

@@ -143,9 +143,8 @@ public interface PropertyValueComponent
* Delete a combination of three unique properties. It doesn't matter if the unique combination
* already existed or not.
*
* @param value1 the first property (<tt>null</tt> allowed)
* @param value2 the second property (<tt>null</tt> allowed)
* @param value3 the third property (<tt>null</tt> allowed)
* @param values an array of one, two or three values, any of which may be <tt>null</tt>
* @return Returns the number of unique combinations deleted
*/
void deletePropertyUniqueContext(Serializable value1, Serializable value2, Serializable value3);
int deletePropertyUniqueContexts(Serializable ... values);
}