Skip to content

Commit

Permalink
Merge pull request #382 from Sarenor/implement-validation-issues-as-o…
Browse files Browse the repository at this point in the history
…bject-instead-of-xml-string

Added getter for validation context to get the ValidationIssues Vector for further processing in another application
  • Loading branch information
jstaerk committed May 17, 2024
2 parents 0720c76 + 1ee64d8 commit b4cfc4b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -516,5 +516,8 @@ public int getFailedRules() {
return failedRules;
}

public ValidationContext getValidationContext() {
return context;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -396,6 +396,10 @@ public void disableNotices() {
disableNotices = true;
}

public ValidationContext getValidationContext() {
return context;
}

/**
* Read the file and calculate the SHA-1 checksum
*
Expand Down

0 comments on commit b4cfc4b

Please sign in to comment.