Uses of Class
org.jasig.portal.tools.checks.CheckResult

Packages that use CheckResult
org.jasig.portal.tools.checks   
 

Uses of CheckResult in org.jasig.portal.tools.checks
 

Fields in org.jasig.portal.tools.checks declared as CheckResult
private  CheckResult ClassPresenceCheck.failureResult
          The CheckResult we will return if our target class is not present.
private  CheckResult SpringBeanCheck.nullBeanNameResult
           
private  CheckResult CheckAndResult.result
          The result of the check.
private  CheckResult ClassPresenceCheck.successResult
          The CheckResult we will return if our target class is present.
 

Methods in org.jasig.portal.tools.checks that return CheckResult
static CheckResult CheckResult.createFailure(java.lang.String message, java.lang.String remediationAdvice)
          Obtain a CheckResult representing a check that failed -- dependency for which you were checking was not present, thing you asserted to be true wasn't, etc.
static CheckResult CheckResult.createSuccess(java.lang.String message)
          Obtain a CheckResult representing a check that succeeded -- dependency for which you were checking was present, thing you asserted to be true actually was true, etc.
 CheckResult Dom3Check.doCheck()
           
 CheckResult ClassPresenceCheck.doCheck()
           
 CheckResult ICheck.doCheck()
          Perform an arbitrary check.
 CheckResult SpringPresenceCheck.doCheck()
           
 CheckResult TimeCheck.doCheck()
           
 CheckResult XalanVersionCheck.doCheck()
           
 CheckResult SpringBeanCheck.doCheck()
           
 CheckResult JaxpCheck.doCheck()
           
(package private)  CheckResult ClassPresenceCheck.getFailureResult()
          Get the CheckResult we will return when we fail to touch our configured targetClass.
 CheckResult CheckAndResult.getResult()
           
(package private)  CheckResult ClassPresenceCheck.getSuccessResult()
          Get the CheckResult we will return when we succeed in touching our configured targetClass.
 

Methods in org.jasig.portal.tools.checks with parameters of type CheckResult
(package private)  void ClassPresenceCheck.setFailureResult(CheckResult failureResult)
          Set the CheckResult we will return when we fail to touch our configured targetClass.
(package private)  void ClassPresenceCheck.setSuccessResult(CheckResult successResult)
          Set the CheckResult we will return when we succeed in touching our configured targetClass.
 

Constructors in org.jasig.portal.tools.checks with parameters of type CheckResult
CheckAndResult(java.lang.String checkDescription, CheckResult result)