public interface IAccountReviewDirect
extends common.direct.IDirect
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
COPYRIGHT
Copyright
|
Modifier and Type | Method and Description |
---|---|
void |
approve(com.engiweb.pm.entity.BeanList<AccountReviewBean> blReviewBean,
java.lang.String note,
java.lang.String userLoggedCode,
com.engiweb.pm.dao.db.DAO connDao)
Approve a list of account reviews.
|
void |
escalate(com.engiweb.pm.entity.BeanList<AccountReviewBean> accountReviewBeans,
AttestationBean attestationBean,
ReviewNoteBean noteBean,
com.engiweb.pm.dao.db.DAO connDao)
Escalate a list of account reviews.
|
com.engiweb.pm.entity.BeanList<ReviewNoteBean> |
findMessage(ReviewNoteBean reviewNoteBean,
AccountReviewBean accountReviewBean,
com.engiweb.pm.entity.Paging paging,
com.engiweb.pm.dao.db.DAO connDao)
Find message.
|
com.engiweb.pm.entity.BeanList<UserReviewBean> |
findReviewer(UserBean userBean,
GroupBean groupBean,
HierarchyBean hierarchyBean,
boolean hier,
AttestationBean attestationBean,
com.engiweb.pm.entity.Paging paging,
com.engiweb.pm.dao.db.DAO connDao)
Find reviewer.
|
com.engiweb.pm.entity.BeanList<UserReviewBean> |
findReviewer(UserBean userBean,
OrgUnitBean ouBean,
boolean hier,
AttestationBean attestationBean,
com.engiweb.pm.entity.Paging paging,
com.engiweb.pm.dao.db.DAO connDao)
Deprecated.
|
com.engiweb.pm.entity.BeanList<UserBean> |
findReviewersForRedirect(UserBean userBean,
GroupBean groupBean,
HierarchyBean hierarchyBean,
boolean hier,
com.engiweb.pm.entity.BeanList<AccountReviewBean> accountReviewList,
com.engiweb.pm.dao.db.DAO connDao)
Find reviewers for redirect
|
com.engiweb.pm.entity.BeanList<UserBean> |
findReviewersForRedirect(UserBean userBean,
OrgUnitBean ouBean,
boolean hier,
com.engiweb.pm.entity.BeanList<AccountReviewBean> accountReviewList,
com.engiweb.pm.dao.db.DAO connDao)
Deprecated.
|
com.engiweb.pm.entity.BeanList<AccountReviewHistoryBean> |
findReviewHistory(java.lang.String pwdCfgName,
UserBean userBean,
com.crossideas.certification.common.enumeration.ReviewStatus reviewStatus,
com.engiweb.pm.entity.Paging paging,
com.engiweb.pm.dao.db.DAO connDao)
Find review history.
|
java.util.HashMap<java.lang.String,java.lang.Integer> |
findReviewStats(UserBean userBean,
AttestationBean attestationBean,
com.engiweb.pm.dao.db.DAO connDao)
Find review statistic
|
com.engiweb.pm.entity.BeanList<UserBean> |
findSupervisorsForEscalate(com.engiweb.pm.entity.BeanList<AccountReviewBean> accountReviewList,
com.engiweb.pm.dao.db.DAO connDao)
Find supervisors for escalate.
|
com.engiweb.pm.entity.BeanList<AccountReviewBean> |
findTotalReview(AccountReviewBean accountReviewBean,
boolean hier,
java.lang.Boolean incompUser,
com.crossideas.certification.common.util.ReviewOption reviewOption,
AttestationBean attestationBean,
UserBean userLogged,
com.engiweb.pm.entity.Paging paging,
com.engiweb.pm.dao.db.DAO connDao)
Find total review.
|
com.engiweb.pm.entity.BeanList<AccountReviewBean> |
findTotalReview(AccountReviewBean accountReviewBean,
boolean hier,
java.lang.Boolean incompUser,
com.crossideas.certification.common.util.ReviewOption reviewOption,
AttestationBean attestationBean,
UserBean userLogged,
TaskBean taskBean,
boolean taskHier,
com.engiweb.pm.entity.Paging paging,
com.engiweb.pm.dao.db.DAO connDao)
Find total review.
|
void |
redirect(com.engiweb.pm.entity.BeanList<AccountReviewBean> blReviewBean,
AttestationBean attestationBean,
ReviewNoteBean noteBean,
com.engiweb.pm.dao.db.DAO connDao)
Redirect a list of account reviews.
|
void |
revoke(com.engiweb.pm.entity.BeanList<AccountReviewBean> blReviewBean,
java.lang.String note,
java.lang.String userLoggedCode,
com.engiweb.pm.dao.db.DAO connDao)
Revoke a list of account reviews.
|
void |
rollback(com.engiweb.pm.entity.BeanList<AccountReviewBean> blReviewBean,
java.lang.String userLoggedCode,
com.engiweb.pm.dao.db.DAO connDao)
Rollback.
|
void |
signOff(com.engiweb.pm.entity.BeanList<AccountReviewBean> accountReviewBeans,
java.lang.String userLoggedCode,
com.engiweb.pm.dao.db.DAO connDao)
Sign off all user account passed that have been processed (approved or revoked), valid, and not signed off yet.
|
void |
updateNote(com.engiweb.pm.entity.BeanList<AccountReviewBean> blReviewBean,
java.lang.String note,
java.lang.String userLoggedCode,
com.engiweb.pm.dao.db.DAO connDao)
Update note.
|
static final java.lang.String COPYRIGHT
void approve(com.engiweb.pm.entity.BeanList<AccountReviewBean> blReviewBean, java.lang.String note, java.lang.String userLoggedCode, com.engiweb.pm.dao.db.DAO connDao) throws com.engiweb.toolkit.common.BackendException
blReviewBean
- BeanList
of AccountReviewBean
note
- String
userLoggedCode
- the code of user loggedconnDao
- DAO
the connection daocom.engiweb.toolkit.common.BackendException
- the backend exceptionvoid revoke(com.engiweb.pm.entity.BeanList<AccountReviewBean> blReviewBean, java.lang.String note, java.lang.String userLoggedCode, com.engiweb.pm.dao.db.DAO connDao) throws com.engiweb.toolkit.common.BackendException
blReviewBean
- BeanList
of AccountReviewBean
note
- String
userLoggedCode
- the code of user loggedconnDao
- DAO
the connection daocom.engiweb.toolkit.common.BackendException
- the backend exceptionvoid redirect(com.engiweb.pm.entity.BeanList<AccountReviewBean> blReviewBean, AttestationBean attestationBean, ReviewNoteBean noteBean, com.engiweb.pm.dao.db.DAO connDao) throws com.engiweb.toolkit.common.BackendException
blReviewBean
- BeanList
of AccountReviewBean
attestationBean
- AttestationBean
mandatory and uniquenoteBean
- ReviewNoteBean
connDao
- DAO
the connection daocom.engiweb.toolkit.common.BackendException
void escalate(com.engiweb.pm.entity.BeanList<AccountReviewBean> accountReviewBeans, AttestationBean attestationBean, ReviewNoteBean noteBean, com.engiweb.pm.dao.db.DAO connDao) throws com.engiweb.toolkit.common.BackendException
accountReviewBeans
- BeanList
of AccountReviewBean
the account review beansattestationBean
- AttestationBean
the attestation beannoteBean
- ReviewNoteBean
connDao
- DAO
the connection daocom.engiweb.toolkit.common.BackendException
- the backend exceptionvoid signOff(com.engiweb.pm.entity.BeanList<AccountReviewBean> accountReviewBeans, java.lang.String userLoggedCode, com.engiweb.pm.dao.db.DAO connDao) throws com.engiweb.toolkit.common.BackendException
accountReviewBeans
- BeanList
of AccountReviewBean
the account review beansuserLoggedCode
- String
the code of user loggedconnDao
- DAO
the connection daocom.engiweb.toolkit.common.BackendException
- the backend exceptioncom.engiweb.pm.entity.BeanList<ReviewNoteBean> findMessage(ReviewNoteBean reviewNoteBean, AccountReviewBean accountReviewBean, com.engiweb.pm.entity.Paging paging, com.engiweb.pm.dao.db.DAO connDao) throws com.engiweb.toolkit.common.BackendException
reviewNoteBean
- ReviewNoteBean
the review note beanaccountReviewBean
- AccountReviewBean
the account review beanpaging
- Paging
the pagingconnDao
- DAO
the connection daoBeanList
of ReviewNoteBean
com.engiweb.toolkit.common.BackendException
- the backend exceptioncom.engiweb.pm.entity.BeanList<AccountReviewHistoryBean> findReviewHistory(java.lang.String pwdCfgName, UserBean userBean, com.crossideas.certification.common.enumeration.ReviewStatus reviewStatus, com.engiweb.pm.entity.Paging paging, com.engiweb.pm.dao.db.DAO connDao) throws com.engiweb.toolkit.common.BackendException
pwdCfgName
- String
The name of the configurationuserBean
- UserBean
the user beanreviewStatus
- ReviewStatus
the review statuspaging
- Paging
the pagingconnDao
- DAO
the connection daoBeanList
of AccountReviewHistoryBean
com.engiweb.toolkit.common.BackendException
- the backend exceptionvoid rollback(com.engiweb.pm.entity.BeanList<AccountReviewBean> blReviewBean, java.lang.String userLoggedCode, com.engiweb.pm.dao.db.DAO connDao) throws com.engiweb.toolkit.common.BackendException
blReviewBean
- BeanList
of AccountReviewBean
userLoggedCode
- String
the code of user loggedconnDao
- DAO
the connection daocom.engiweb.toolkit.common.BackendException
- the backend exceptionvoid updateNote(com.engiweb.pm.entity.BeanList<AccountReviewBean> blReviewBean, java.lang.String note, java.lang.String userLoggedCode, com.engiweb.pm.dao.db.DAO connDao) throws com.engiweb.toolkit.common.BackendException
blReviewBean
- BeanList
of AccountReviewBean
note
- String
the noteuserLoggedCode
- String
the code of user loggedconnDao
- DAO
the connection daocom.engiweb.toolkit.common.BackendException
- the backend exception@Deprecated com.engiweb.pm.entity.BeanList<UserBean> findReviewersForRedirect(UserBean userBean, OrgUnitBean ouBean, boolean hier, com.engiweb.pm.entity.BeanList<AccountReviewBean> accountReviewList, com.engiweb.pm.dao.db.DAO connDao) throws com.engiweb.toolkit.common.BackendException
findReviewersForRedirect(UserBean, GroupBean, HierarchyBean, boolean, BeanList, DAO)
com.engiweb.toolkit.common.BackendException
com.engiweb.pm.entity.BeanList<UserBean> findReviewersForRedirect(UserBean userBean, GroupBean groupBean, HierarchyBean hierarchyBean, boolean hier, com.engiweb.pm.entity.BeanList<AccountReviewBean> accountReviewList, com.engiweb.pm.dao.db.DAO connDao) throws com.engiweb.toolkit.common.BackendException
userBean
- UserBean
groupBean
- GroupBean
hierarchyBean
- HierarchyBean
hier
- boolean: if true research must be performed hierarchically, false otherwiseaccountReviewList
- BeanList
of AccountReviewBean
the account review listconnDao
- DAO
the connection daoBeanList
of UserBean
com.engiweb.toolkit.common.BackendException
- the backend exceptioncom.engiweb.pm.entity.BeanList<UserBean> findSupervisorsForEscalate(com.engiweb.pm.entity.BeanList<AccountReviewBean> accountReviewList, com.engiweb.pm.dao.db.DAO connDao) throws com.engiweb.toolkit.common.BackendException
accountReviewList
- BeanList
of AccountReviewBean
connDao
- DAO
the connection daoBeanList
of UserBean
com.engiweb.toolkit.common.BackendException
- the backend exception@Deprecated com.engiweb.pm.entity.BeanList<UserReviewBean> findReviewer(UserBean userBean, OrgUnitBean ouBean, boolean hier, AttestationBean attestationBean, com.engiweb.pm.entity.Paging paging, com.engiweb.pm.dao.db.DAO connDao) throws com.engiweb.toolkit.common.BackendException
findReviewer(UserBean, GroupBean, HierarchyBean, boolean, AttestationBean, Paging, DAO)
com.engiweb.toolkit.common.BackendException
com.engiweb.pm.entity.BeanList<UserReviewBean> findReviewer(UserBean userBean, GroupBean groupBean, HierarchyBean hierarchyBean, boolean hier, AttestationBean attestationBean, com.engiweb.pm.entity.Paging paging, com.engiweb.pm.dao.db.DAO connDao) throws com.engiweb.toolkit.common.BackendException
userBean
- UserBean
the user beangroupBean
- GroupBean
the group beanhierarchyBean
- HierarchyBean
the hierarchyhier
- boolean: if true research must be performed hierarchically, false otherwiseattestationBean
- AttestationBean
the attestation beanpaging
- Paging
the pagingconnDao
- DAO
the connection daoBeanList
of UserReviewBean
com.engiweb.toolkit.common.BackendException
- the backend exceptionjava.util.HashMap<java.lang.String,java.lang.Integer> findReviewStats(UserBean userBean, AttestationBean attestationBean, com.engiweb.pm.dao.db.DAO connDao) throws com.engiweb.toolkit.common.BackendException
userBean
- UserBean
the user beanattestationBean
- AttestationBean
the attestation beanconnDao
- DAO
the connection daocom.engiweb.toolkit.common.BackendException
- the backend exceptioncom.engiweb.pm.entity.BeanList<AccountReviewBean> findTotalReview(AccountReviewBean accountReviewBean, boolean hier, java.lang.Boolean incompUser, com.crossideas.certification.common.util.ReviewOption reviewOption, AttestationBean attestationBean, UserBean userLogged, com.engiweb.pm.entity.Paging paging, com.engiweb.pm.dao.db.DAO connDao) throws com.engiweb.toolkit.common.BackendException
accountReviewBean
- AccountReviewBean
the account review beanhier
- boolean: if true research must be performed hierarchically, false otherwiseincompUser
- Boolean
the incomp userreviewOption
- ReviewOption
the review optionattestationBean
- AttestationBean
the attestation beanuserLogged
- UserBean
the user loggedpaging
- Paging
the pagingconnDao
- DAO
the connection daoBeanList
of AccountReviewBean
com.engiweb.toolkit.common.BackendException
- the backend exceptioncom.engiweb.pm.entity.BeanList<AccountReviewBean> findTotalReview(AccountReviewBean accountReviewBean, boolean hier, java.lang.Boolean incompUser, com.crossideas.certification.common.util.ReviewOption reviewOption, AttestationBean attestationBean, UserBean userLogged, TaskBean taskBean, boolean taskHier, com.engiweb.pm.entity.Paging paging, com.engiweb.pm.dao.db.DAO connDao) throws com.engiweb.toolkit.common.BackendException
accountReviewBean
- AccountReviewBean
the account review beanhier
- boolean: if true research must be performed hierarchically, false otherwiseincompUser
- Boolean
the incomp userreviewOption
- ReviewOption
the review optionattestationBean
- AttestationBean
the attestation beanuserLogged
- UserBean
the user loggedpaging
- Paging
the pagingconnDao
- DAO
the connection daoBeanList
of AccountReviewBean
com.engiweb.toolkit.common.BackendException
- the backend exception