Package com.day.cq.compat.codeupgrade
Interface CodeUpgradeTaskFilter
-
@ConsumerType public interface CodeUpgradeTaskFilterInterface for Services that declare a filter logic for CodeUpgradeTasks that should not be executed. Is consulted by the executor for each foundCodeUpgradeTask
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisSkipped(CodeUpgradeTask codeUpgradeTask)Checks if CodeUpgradeTask is not to be executed
-
-
-
Method Detail
-
isSkipped
boolean isSkipped(CodeUpgradeTask codeUpgradeTask)
Checks if CodeUpgradeTask is not to be executed- Parameters:
codeUpgradeTask- theCodeUpgradeTaskto be checked- Returns:
- true if class is blacklisted and should therefore be skipped by caller.
-
-