

Public Member Functions | |
| void | setDao (Dao dao) |
| Object | getObject (Class clazz, Serializable id) |
| List | getObjects (Class clazz) |
| void | removeObject (Class clazz, Serializable id) |
| void | saveObject (Object o) |
Protected Attributes | |
| final Log | log = LogFactory.getLog(getClass()) |
| Dao | dao = null |
Base class for Business Services - use this class for utility methods and generic CRUD methods.
Definition at line 37 of file BaseManager.java.
| void org.osmius.service.impl.BaseManager.setDao | ( | Dao | dao | ) |
Implements org.osmius.service.Manager.
Definition at line 44 of file BaseManager.java.
References org.osmius.service.impl.BaseManager.dao.
| Object org.osmius.service.impl.BaseManager.getObject | ( | Class | clazz, | |
| Serializable | id | |||
| ) |
Implements org.osmius.service.Manager.
Definition at line 51 of file BaseManager.java.
References org.osmius.service.impl.BaseManager.dao, and org.osmius.dao.Dao.getObject().
Here is the call graph for this function:

| List org.osmius.service.impl.BaseManager.getObjects | ( | Class | clazz | ) |
Implements org.osmius.service.Manager.
Definition at line 58 of file BaseManager.java.
References org.osmius.service.impl.BaseManager.dao, and org.osmius.dao.Dao.getObjects().
Here is the call graph for this function:

| void org.osmius.service.impl.BaseManager.removeObject | ( | Class | clazz, | |
| Serializable | id | |||
| ) |
Implements org.osmius.service.Manager.
Definition at line 65 of file BaseManager.java.
References org.osmius.service.impl.BaseManager.dao, and org.osmius.dao.Dao.removeObject().
Here is the call graph for this function:

| void org.osmius.service.impl.BaseManager.saveObject | ( | Object | o | ) |
Implements org.osmius.service.Manager.
Definition at line 73 of file BaseManager.java.
References org.osmius.service.impl.BaseManager.dao, and org.osmius.dao.Dao.saveObject().
Here is the call graph for this function:

1.5.1