Class UserCertificationStats

java.lang.Object
oracle.iam.certification.vo.CertificationStats
oracle.iam.certification.vo.UserCertificationStats
All Implemented Interfaces:
Serializable

public class UserCertificationStats extends CertificationStats
See Also:
  • Constructor Details

    • UserCertificationStats

      public UserCertificationStats()
    • UserCertificationStats

      public UserCertificationStats(long certId, String taskUid, int phaseCount, int currentPhase)
      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

      public void setUserPercentCompleteMap(Map<Long,Double> tmpMap)
    • getPercentComplete

      public double getPercentComplete()
      Specified by:
      getPercentComplete in class CertificationStats
    • 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

      public void setUserAcctTotalMap(Map<Long,Long> userAcctTotalMap)
    • getUserAcctTotalMap

      public Map<Long,Long> getUserAcctTotalMap()
    • getUserAcctTotal

      public long getUserAcctTotal(long userEntityId)
      Return account total for specified user
      Parameters:
      userEntityId -
      Returns:
      total count for the user
    • setUserRoleTotalMap

      public void setUserRoleTotalMap(Map<Long,Long> userRoleTotalMap)
    • getUserRoleTotalMap

      public Map<Long,Long> getUserRoleTotalMap()
    • getUserRoleTotal

      public long getUserRoleTotal(long userEntityId)
      Return role total for specified user
      Parameters:
      userEntityId -
      Returns:
      total count for the user
    • setUserEntitlementTotalMap

      public void setUserEntitlementTotalMap(Map<Long,Long> userEntitlementTotalMap)
    • getUserEntitlementTotalMap

      public Map<Long,Long> 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()