* @return <code>true</code> if the entity is added
* @throws dmLite
* action exception if there is a problem
*/
public boolean add(T entity) throws ActionException {
EntitiesAction entitiesAddAction = new AddAction();
entitiesAddAction.setEntities(this);
entitiesAddAction.setEntity(entity);
try {
if (entity == null) {
return false;
}