Uses of Class
com.atlassian.confluence.internal.health.LifecyclePhase
-
Packages that use LifecyclePhase Package Description com.atlassian.confluence.impl.health com.atlassian.confluence.impl.health.checks com.atlassian.confluence.internal.health -
-
Uses of LifecyclePhase in com.atlassian.confluence.impl.health
Methods in com.atlassian.confluence.impl.health that return types with arguments of type LifecyclePhase Modifier and Type Method Description protected abstract Set<LifecyclePhase>
HealthCheckTemplate. getApplicablePhases()
Subclasses should indicate the phases in which this check should run.Methods in com.atlassian.confluence.impl.health with parameters of type LifecyclePhase Modifier and Type Method Description boolean
HealthCheckTemplate. isApplicableFor(LifecyclePhase phase)
List<HealthCheckResult>
HealthCheckTemplate. perform(LifecyclePhase phase)
Set<HealthCheckResult>
DefaultHealthCheckExecutor. performHealthChecks(Collection<HealthCheck> healthChecks, LifecyclePhase lifecyclePhase)
void
DefaultHealthCheckRunner. runHealthChecks(LifecyclePhase lifecyclePhase)
void
HealthCheckRunner. runHealthChecks(LifecyclePhase lifecyclePhase)
Runs theHealthCheck
s in the givenLifecyclePhase
. -
Uses of LifecyclePhase in com.atlassian.confluence.impl.health.checks
Methods in com.atlassian.confluence.impl.health.checks that return types with arguments of type LifecyclePhase Modifier and Type Method Description protected Set<LifecyclePhase>
AttachmentDataFileStoreCheck. getApplicablePhases()
protected Set<LifecyclePhase>
DatabaseCollationHealthCheck. getApplicablePhases()
protected Set<LifecyclePhase>
DatabaseSetupHealthCheck. getApplicablePhases()
protected Set<LifecyclePhase>
DbConnectionHealthCheck. getApplicablePhases()
protected Set<LifecyclePhase>
HomeHealthCheck. getApplicablePhases()
protected Set<LifecyclePhase>
HttpThreadsVsDbConnectionsHealthCheck. getApplicablePhases()
protected Set<LifecyclePhase>
LicenseValidationHealthCheck. getApplicablePhases()
protected Set<LifecyclePhase>
MSSQLDriverMigrationHealthCheck. getApplicablePhases()
protected Set<LifecyclePhase>
MySqlJdbcUrlHealthCheck. getApplicablePhases()
protected Set<LifecyclePhase>
OperatingSystemFreeMemoryHealthCheck. getApplicablePhases()
Methods in com.atlassian.confluence.impl.health.checks with parameters of type LifecyclePhase Modifier and Type Method Description com.atlassian.johnson.event.EventType
FakeHealthCheck. getAppropriateErrorTypeForPhase(LifecyclePhase phase)
boolean
FakeHealthCheck. isApplicableFor(LifecyclePhase phase)
@NonNull List<HealthCheckResult>
FakeHealthCheck. perform(LifecyclePhase lifecyclePhase)
-
Uses of LifecyclePhase in com.atlassian.confluence.internal.health
Methods in com.atlassian.confluence.internal.health that return LifecyclePhase Modifier and Type Method Description static LifecyclePhase
LifecyclePhase. valueOf(String name)
Returns the enum constant of this type with the specified name.static LifecyclePhase[]
LifecyclePhase. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.atlassian.confluence.internal.health with parameters of type LifecyclePhase Modifier and Type Method Description boolean
HealthCheck. isApplicableFor(LifecyclePhase phase)
Checks if current HealthCheck is applicable for given phase@NonNull List<HealthCheckResult>
HealthCheck. perform(LifecyclePhase phase)
Performs health check for given phase.Set<HealthCheckResult>
HealthCheckExecutor. performHealthChecks(Collection<HealthCheck> healthChecks, LifecyclePhase lifecyclePhase)
Executes given health checks for the given phase of the Confluence lifecycle.
-