Package lumis.portal.progress
Interface IProgressDao
-
- All Known Implementing Classes:
ProgressDaoJdbc
public interface IProgressDao
Dao class for Progress objects- Since:
- 4.0.7
- Version:
- $Revision: 4942 $ $Date: 2006-11-03 09:10:15 -0300 (Fri, 03 Nov 2006) $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
add(ProgressConfig progressConfig)
void
addOrUpdateStep(ProgressConfig progressConfig)
void
deleteByProcessId(java.lang.String processId)
void
deleteExpired(java.sql.Timestamp expirationDateTime)
boolean
getAbortedByProcessId(java.lang.String processId)
java.util.Collection<ProgressConfig>
getByProcessId(java.lang.String processId, java.sql.Timestamp startDateTime)
-
-
-
Method Detail
-
add
void add(ProgressConfig progressConfig) throws DaoException, PortalException
- Throws:
DaoException
PortalException
-
getByProcessId
java.util.Collection<ProgressConfig> getByProcessId(java.lang.String processId, java.sql.Timestamp startDateTime) throws DaoException, PortalException
- Throws:
DaoException
PortalException
-
deleteByProcessId
void deleteByProcessId(java.lang.String processId) throws DaoException, PortalException
- Throws:
DaoException
PortalException
-
deleteExpired
void deleteExpired(java.sql.Timestamp expirationDateTime) throws DaoException, PortalException
- Throws:
DaoException
PortalException
-
addOrUpdateStep
void addOrUpdateStep(ProgressConfig progressConfig) throws DaoException, PortalException
- Throws:
DaoException
PortalException
-
getAbortedByProcessId
boolean getAbortedByProcessId(java.lang.String processId) throws DaoException, PortalException
- Throws:
DaoException
PortalException
-
-