Package lumis.doui.dao
Class DouiDaoHib
- java.lang.Object
-
- lumis.portal.dao.hibernate.GenericHibernateManualUpdateDao<DouiConfig,String>
-
- lumis.doui.dao.DouiDaoHib
-
- All Implemented Interfaces:
IDouiDao
public class DouiDaoHib extends GenericHibernateManualUpdateDao<DouiConfig,String> implements IDouiDao
- Since:
- 4.0.0
- Version:
- $Revision: 6669 $ $Date: 2007-05-02 15:52:18 -0300 (Wed, 02 May 2007) $
-
-
Constructor Summary
Constructors Constructor Description DouiDaoHib()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addOrUpdate(DouiConfig douiConfig, ITransaction transaction)
boolean
delete(String serviceId, ITransaction transaction)
Deletes the bean with the given id from persistence.DouiConfig
get(String serviceId, ITransaction transaction)
Returns the bean with the given id.protected String
getIdentifier(DouiConfig douiConfig)
-
Methods inherited from class lumis.portal.dao.hibernate.GenericHibernateManualUpdateDao
add, evict, exists, findByCriteria, findByCriteria, getPersistentClass, setReadOnly, update
-
-
-
-
Method Detail
-
getIdentifier
protected String getIdentifier(DouiConfig douiConfig)
- Specified by:
getIdentifier
in classGenericHibernateManualUpdateDao<DouiConfig,String>
-
addOrUpdate
public void addOrUpdate(DouiConfig douiConfig, ITransaction transaction) throws DaoException, PortalException
- Specified by:
addOrUpdate
in interfaceIDouiDao
- Overrides:
addOrUpdate
in classGenericHibernateManualUpdateDao<DouiConfig,String>
- Throws:
DaoException
PortalException
-
get
public DouiConfig get(String serviceId, ITransaction transaction) throws DaoException, PortalException
Description copied from class:GenericHibernateManualUpdateDao
Returns the bean with the given id. The bean is set as read-only, so changes on it won't persist automatically.- Specified by:
get
in interfaceIDouiDao
- Overrides:
get
in classGenericHibernateManualUpdateDao<DouiConfig,String>
- Parameters:
serviceId
- the bean's id.transaction
- the transaction for persistence access. Must be aITransactionHibernate
.- Returns:
- the bean.
- Throws:
DaoException
PortalException
-
delete
public boolean delete(String serviceId, ITransaction transaction) throws DaoException, PortalException
Description copied from class:GenericHibernateManualUpdateDao
Deletes the bean with the given id from persistence.- Specified by:
delete
in interfaceIDouiDao
- Overrides:
delete
in classGenericHibernateManualUpdateDao<DouiConfig,String>
- Parameters:
serviceId
- the bean's id.transaction
- the transaction for persistence access. Must be aITransactionHibernate
.- Returns:
- true if the bean was deleted, or false if it did not exist
- Throws:
DaoException
PortalException
-
-