Package org.java.plugin.registry
Interface IntegrityCheckReport
public interface IntegrityCheckReport
Result of validation performed by registry on all registered plug-ins. This
includes dependencies check, parameters check (against parameter definitions)
and any other kind of validation.
- Version:
- $Id$
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic enumIntegrity check error constants.static interfaceIntegrity check report element.static enumIntegrity check report item severity constants. -
Method Summary
-
Method Details
-
countErrors
int countErrors()- Returns:
- number of items with severity
IntegrityCheckReport.Severity.ERRORin this report
-
countWarnings
int countWarnings()- Returns:
- number of items with severity
IntegrityCheckReport.Severity.WARNINGin this report
-
getItems
Collection<IntegrityCheckReport.ReportItem> getItems()- Returns:
- collection of
IntegrityCheckReport.ReportItemobjects
-