use of org.apache.jena.shacl.validation.ReportItem in project jena by apache.
the class ConstraintEntity method validatePropertyShape.
@Override
public final void validatePropertyShape(ValidationContext vCxt, Graph data, Shape shape, Node focusNode, Path path, Set<Node> pathNodes) {
ReportItem item = validate(vCxt, pathNodes);
if (item == null)
return;
vCxt.reportEntry(item.getMessage(), shape, focusNode, path, item.getValue(), this);
}
Aggregations