Interface ComponentVerifierExtension.Result
- All Superinterfaces:
Serializable
- Enclosing interface:
- ComponentVerifierExtension
The result of a verification
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic enum
Status of the verification -
Method Summary
Modifier and TypeMethodDescriptionCollection of errors happened for the verification.getScope()
Scope of the verification.Result of the validation as status.
-
Method Details
-
getScope
ComponentVerifierExtension.Scope getScope()Scope of the verification. This is the scope given to the call toComponentVerifierExtension.verify(Scope, Map)
and can be used for correlation.- Returns:
- the scope against which the parameters have been validated.
-
getStatus
ComponentVerifierExtension.Result.Status getStatus()Result of the validation as status. This should be the first datum to check after a verification happened.- Returns:
- the status
-
getErrors
List<ComponentVerifierExtension.VerificationError> getErrors()Collection of errors happened for the verification. This list is empty (but non null) if the verification succeeded.- Returns:
- a list of errors. Can be empty when verification was successful
-