org.jasig.portal.tools.checks |
|
Java Source File Name | Type | Comment |
BasicCheckRunner.java | Class | Safely executes a configured List of checks. |
CheckAndResult.java | Class | Represents a description of a check as well as the result of having performed that
check. |
CheckingContextListener.java | Class | This context listener executes SafeDelegatingCheckRunner, logs its results,
and exposes its results in the ServletContext. |
CheckResult.java | Class | Object representing the result of a check. |
ChecksServlet.java | Class | A Servlet which renders the results of the checks. |
ClassPresenceCheck.java | Class | Checks that a class named as a constructor argument is present. |
ClassPresenceCheckTest.java | Class | JUnit testcase for ClassPresenceCheck. |
Dom3Check.java | Class | Checks that DOM level 3 is present.
uPortal requires level 3 of the DOM (org.w3c.dom) APIs.
JDK 1.4 shipped with a DOM 2 implementation of this API in its rt.jar, so
deployers using JDK 1.4 must override with the JAXP 1.3
implementation of these APIs. |
ICheck.java | Interface | A single runtime check that to be performed to validate an application deployment. |
ICheckRunner.java | Interface | Interface for objects that execute IChecks and return Lists of CheckAndResult
objects. |
JaxpCheck.java | Class | Checks that JAXP is present in the JVM. |
SafeDelegatingCheckRunner.java | Class | SafeDelegatingCheckRunner safely attempts to delegate to a Spring-configured
ICheckRunner. |
SpringBeanCheck.java | Class | Check that a particular named Spring bean is defined. |
SpringPresenceCheck.java | Class | Test that the spring.jar is available on the classpath. |
TimeCheck.java | Class | An example ICheck implementation which is just a diagnostic and not an assertion.
This check cannot fail, but it still exposes useful information, namely when the check
was run. |
XalanVersionCheck.java | Class | Checks the Xalan version against a configured value. |