Package de.aristaflow.ilm.model.common
Class CheckReport
- java.lang.Object
-
- de.aristaflow.ilm.model.common.CheckReport
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ChangeReport
public class CheckReport extends Object implements Serializable
- See Also:
CheckReport
,LocalisedCheckReport
, Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
CheckReport.Entry
-
Field Summary
Fields Modifier and Type Field Description URI
base
List<@NotNull @Valid CheckReport.Entry>
entries
@NotBlank String
langTag
The language of the report as a IETF BCP 47 language tag.@NotNull CheckReport.ResultType
overallResult
@Size(min=1) String
subClass
This is used as additional information for rich type hierarchies.
-
Constructor Summary
Constructors Constructor Description CheckReport()
The constructor required for bean deserialisation.
-
-
-
Field Detail
-
subClass
@Size(min=1) public @Size(min=1) String subClass
This is used as additional information for rich type hierarchies.
-
overallResult
@NotNull public @NotNull CheckReport.ResultType overallResult
-
entries
public List<@NotNull @Valid CheckReport.Entry> entries
-
base
public URI base
-
langTag
@NotBlank public @NotBlank String langTag
The language of the report as a IETF BCP 47 language tag.
-
-