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$ $Date$
-
-
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
-
-