Added multi-select for property values

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@16542 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Derek Hulley
2009-09-27 20:57:47 +00:00
parent fb895d06a8
commit ac71c4f7d7
7 changed files with 252 additions and 0 deletions

View File

@@ -796,6 +796,11 @@ public abstract class AbstractPropertyValueDAOImpl implements PropertyValueDAO
return entityPair.getSecond();
}
public void getPropertiesByIds(List<Long> ids, PropertyFinderCallback callback)
{
findPropertiesByIds(ids, callback);
}
/**
* {@inheritDoc}
* @see #createPropertyImpl(Serializable, int, int)
@@ -1032,6 +1037,7 @@ public abstract class AbstractPropertyValueDAOImpl implements PropertyValueDAO
}
protected abstract List<PropertyIdSearchRow> findPropertyById(Long id);
protected abstract void findPropertiesByIds(List<Long> ids, PropertyFinderCallback callback);
protected abstract Long createPropertyRoot();
protected abstract PropertyRootEntity getPropertyRoot(Long id);
protected abstract PropertyRootEntity updatePropertyRoot(PropertyRootEntity entity);