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 Classes Modifier and Type Interface Description static class
IntegrityCheckReport.Error
Integrity check error constants.static interface
IntegrityCheckReport.ReportItem
Integrity check report element.static class
IntegrityCheckReport.Severity
Integrity check report item severity constants.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
countErrors()
int
countWarnings()
java.util.Collection<IntegrityCheckReport.ReportItem>
getItems()
-
-
-
Method Detail
-
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
java.util.Collection<IntegrityCheckReport.ReportItem> getItems()
- Returns:
- collection of
IntegrityCheckReport.ReportItem
objects
-
-