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 enum
Integrity check error constants.static interface
Integrity check report element.static enum
Integrity check report item severity constants. -
Method Summary
-
Method Details
-
countErrors
int countErrors()- Returns:
- number of items with severity
IntegrityCheckReport.Severity.ERROR
in this report
-
countWarnings
int countWarnings()- Returns:
- number of items with severity
IntegrityCheckReport.Severity.WARNING
in this report
-
getItems
Collection<IntegrityCheckReport.ReportItem> getItems()- Returns:
- collection of
IntegrityCheckReport.ReportItem
objects
-