/**
* Delete. *
* @param entity the entity
* @return true, if successful
*/
public boolean delete(T entity) {
boolean deleted=false;
getSession().delete(entity);
flush();
//when no hibernate runtime exception has arised...set to true.
deleted = true;
return deleted;
}
hubert
41 уровень
ПЕРЕЙДИТЕ В ПОЛНУЮ ВЕРСИЮ