Methods in com.geekologue.md4j.dao.hibernate that throw DataAccessException |
void |
AbstractHbmDAO.delete(java.io.Serializable pojo)
|
protected java.util.List |
AbstractHbmDAO.findByExample(java.lang.Object exampleObject)
|
java.lang.Object |
AbstractHbmDAO.get(java.io.Serializable identifier)
Retreive the object matching the class handled by this DAO and the given
identifier or null if no match is found. |
java.util.List |
AbstractHbmDAO.listAll()
|
java.lang.Object |
AbstractHbmDAO.load(java.io.Serializable identifier)
Retreive the object matching the class handled by this DAO and the given
identifier. |
java.io.Serializable |
AbstractHbmDAO.save(java.lang.Object pojo)
|
java.io.Serializable |
AbstractHbmDAO.saveOrUpdate(java.lang.Object pojo)
|
void |
AbstractHbmDAO.update(java.util.Map map)
Update the object matching the given identifier according to the property
value pairs in the given map. |
void |
AbstractHbmDAO.update(java.lang.Object pojo)
|