Interface ProcessCheck
-
- All Superinterfaces:
Initialization
- All Known Implementing Classes:
AbstractDataProcessCheck
,AbstractFileProcessCheck
,AbstractProcessCheck
,ComponentFileFilterProcessCheck
,DataStorageQuotaProcessCheck
public interface ProcessCheck extends Initialization
Interface which has to be implemented by all verification classes that have to be used during an execution of a chained Silverpeas processes.- Author:
- Yohann Chastagnier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
check(ProcessExecutionContext processExecutionContext)
Contains the treatment of the verification.ProcessCheckType
getType()
Gets the type of the check-
Methods inherited from interface org.silverpeas.core.initialization.Initialization
getPriority, init, release
-
-
-
-
Method Detail
-
getType
ProcessCheckType getType()
Gets the type of the check- Returns:
- the type of check.
-
check
void check(ProcessExecutionContext processExecutionContext) throws Exception
Contains the treatment of the verification.- Parameters:
processExecutionContext
- the context of the chained list of checks execution.- Throws:
Exception
-
-