Package org.camunda.bpm.engine.migration
Interface MigrationPlanValidationReport
-
- All Known Implementing Classes:
MigrationPlanValidationReportImpl
public interface MigrationPlanValidationReport
Collects the migration validation reports for all instructions and variables of the migration plan which contain failures.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<MigrationInstructionValidationReport>
getInstructionReports()
MigrationPlan
getMigrationPlan()
Map<String,MigrationVariableValidationReport>
getVariableReports()
boolean
hasInstructionReports()
boolean
hasReports()
boolean
hasVariableReports()
-
-
-
Method Detail
-
getMigrationPlan
MigrationPlan getMigrationPlan()
- Returns:
- the migration plan of the validation report
-
hasReports
boolean hasReports()
- Returns:
true
if either instruction or variable reports exist,false
otherwise
-
hasInstructionReports
boolean hasInstructionReports()
- Returns:
- true if instructions reports exist, false otherwise
-
hasVariableReports
boolean hasVariableReports()
- Returns:
true
if variable reports exist,false
otherwise
-
getInstructionReports
List<MigrationInstructionValidationReport> getInstructionReports()
- Returns:
- all instruction reports
-
getVariableReports
Map<String,MigrationVariableValidationReport> getVariableReports()
- Returns:
- all variable reports
-
-