

Public Member Functions | |
| void | saveObject (Object o) |
| Object | getObject (Class clazz, Serializable id) |
| List | getObjects (Class clazz) |
| void | removeObject (Class clazz, Serializable id) |
Protected Attributes | |
| final Log | log = LogFactory.getLog(getClass()) |
Definition at line 34 of file BaseDaoHibernate.java.
| void org.osmius.dao.hibernate.BaseDaoHibernate.saveObject | ( | Object | o | ) |
Save an object on the database
| o | The object to be save |
Implements org.osmius.dao.Dao.
Definition at line 42 of file BaseDaoHibernate.java.
| Object org.osmius.dao.hibernate.BaseDaoHibernate.getObject | ( | Class | clazz, | |
| Serializable | id | |||
| ) |
Gets the object of a class from the database
| clazz | The class to be loaded | |
| id | The serializable ID |
Implements org.osmius.dao.Dao.
Definition at line 53 of file BaseDaoHibernate.java.
Referenced by org.osmius.dao.hibernate.BaseDaoHibernate.removeObject().
| List org.osmius.dao.hibernate.BaseDaoHibernate.getObjects | ( | Class | clazz | ) |
Gets a list with the database information of a class
| clazz | The class to be loaded |
Implements org.osmius.dao.Dao.
Definition at line 69 of file BaseDaoHibernate.java.
| void org.osmius.dao.hibernate.BaseDaoHibernate.removeObject | ( | Class | clazz, | |
| Serializable | id | |||
| ) |
Remove an object from the database
| clazz | The object to be remove | |
| id | The serializable ID |
Implements org.osmius.dao.Dao.
Definition at line 79 of file BaseDaoHibernate.java.
References org.osmius.dao.hibernate.BaseDaoHibernate.getObject().
Here is the call graph for this function:

1.5.1