Package oracle.iam.certification.vo
Class UserCertificationStats
java.lang.Object
oracle.iam.certification.vo.CertificationStats
oracle.iam.certification.vo.UserCertificationStats
- All Implemented Interfaces:
Serializable
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionUserCertificationStats
(long certId, String taskUid, int phaseCount, int currentPhase) Constructor -
Method Summary
Modifier and TypeMethodDescriptionvoid
Compute percent complete as the ratio of total count to total complete for all "line item details" Line item details: RoleAsgn, Account, EntitlementAsgncomputeUserPercentComplete
(long uRoleAsgnTotal, long uRoleAsgnComplete, long uAcctTotal, long uAcctComplete, long uEntAsgnTotal, long uEntAsgnComplete) Compute user percent complete as the ratio of total count to total complete for all "line item details" Line item details: RoleAsgn, Account, EntitlementAsgnlong
long
int
long
long
double
double
Returns the overall percentage for the certification.double
double
getPercentCompleteByPhase
(int phaseNumber) double
double
int
long
long
long
getUserAcctTotal
(long userEntityId) Return account total for specified userlong
long
getUserEntitlementTotal
(long userEntityId) Return account total for specified userdouble
getUserPercentComplete
(long userEntityId) Return percent complete for specified userlong
getUserRoleTotal
(long userEntityId) Return role total for specified userlong
void
setAccountComplete
(long accountComplete) void
setAccountTotal
(long accountTotal) void
setCurrentPhase
(int currentPhase) void
setEntitlementAsgnComplete
(long entitlementAsgnComplete) void
setEntitlementAsgnTotal
(long entitlementAsgnTotal) void
setPhaseCount
(int phaseCount) void
setRoleAsgnComplete
(long roleAsgnComplete) void
setRoleAsgnTotal
(long roleAsgnTotal) void
setUserAcctTotalMap
(Map<Long, Long> userAcctTotalMap) void
setUserComplete
(long userComplete) void
setUserEntitlementTotalMap
(Map<Long, Long> userEntitlementTotalMap) void
setUserPercentCompleteMap
(Map<Long, Double> tmpMap) void
setUserRoleTotalMap
(Map<Long, Long> userRoleTotalMap) void
setUserTotal
(long userTotal)
-
Constructor Details
-
UserCertificationStats
public UserCertificationStats() -
UserCertificationStats
Constructor- Parameters:
certId
-taskUid
-
-
-
Method Details
-
computePercentComplete
public void computePercentComplete()Compute percent complete as the ratio of total count to total complete for all "line item details" Line item details: RoleAsgn, Account, EntitlementAsgn -
computeUserPercentComplete
public Double computeUserPercentComplete(long uRoleAsgnTotal, long uRoleAsgnComplete, long uAcctTotal, long uAcctComplete, long uEntAsgnTotal, long uEntAsgnComplete) Compute user percent complete as the ratio of total count to total complete for all "line item details" Line item details: RoleAsgn, Account, EntitlementAsgn -
getUserPercentComplete
public double getUserPercentComplete(long userEntityId) Return percent complete for specified user- Parameters:
userEntityId
-- Returns:
- Percent complete for the user
-
setUserPercentCompleteMap
-
getPercentComplete
public double getPercentComplete()- Specified by:
getPercentComplete
in classCertificationStats
-
setUserTotal
public void setUserTotal(long userTotal) -
getUserTotal
public long getUserTotal() -
setUserComplete
public void setUserComplete(long userComplete) -
getUserComplete
public long getUserComplete() -
setRoleAsgnTotal
public void setRoleAsgnTotal(long roleAsgnTotal) -
getRoleAsgnTotal
public long getRoleAsgnTotal() -
setRoleAsgnComplete
public void setRoleAsgnComplete(long roleAsgnComplete) -
getRoleAsgnComplete
public long getRoleAsgnComplete() -
setAccountTotal
public void setAccountTotal(long accountTotal) -
getAccountTotal
public long getAccountTotal() -
setAccountComplete
public void setAccountComplete(long accountComplete) -
getAccountComplete
public long getAccountComplete() -
setEntitlementAsgnTotal
public void setEntitlementAsgnTotal(long entitlementAsgnTotal) -
getEntitlementAsgnTotal
public long getEntitlementAsgnTotal() -
setEntitlementAsgnComplete
public void setEntitlementAsgnComplete(long entitlementAsgnComplete) -
getEntitlementAsgnComplete
public long getEntitlementAsgnComplete() -
setUserAcctTotalMap
-
getUserAcctTotalMap
-
getUserAcctTotal
public long getUserAcctTotal(long userEntityId) Return account total for specified user- Parameters:
userEntityId
-- Returns:
- total count for the user
-
setUserRoleTotalMap
-
getUserRoleTotalMap
-
getUserRoleTotal
public long getUserRoleTotal(long userEntityId) Return role total for specified user- Parameters:
userEntityId
-- Returns:
- total count for the user
-
setUserEntitlementTotalMap
-
getUserEntitlementTotalMap
-
getUserEntitlementTotal
public long getUserEntitlementTotal(long userEntityId) Return account total for specified user- Parameters:
userEntityId
-- Returns:
- total count for the user
-
setPhaseCount
public void setPhaseCount(int phaseCount) -
getPhaseCount
public int getPhaseCount() -
setCurrentPhase
public void setCurrentPhase(int currentPhase) -
getCurrentPhase
public int getCurrentPhase() -
getOverallPercentComplete
public double getOverallPercentComplete()Returns the overall percentage for the certification. Used in dashboard view. Computed based on total phases and progress for each phase.- Returns:
- double value indicating the overall percentage for the certification.
-
getPercentCompleteByPhase
public double getPercentCompleteByPhase(int phaseNumber) -
getPhase1PercentComplete
public double getPhase1PercentComplete() -
getPhase2PercentComplete
public double getPhase2PercentComplete() -
getFinalReviewPercentComplete
public double getFinalReviewPercentComplete()
-