-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bag completeness for tag files #124
Comments
@rvanheest and @acdha the It does this by first getting all the files listed in all manifests (see https://github.com/LibraryOfCongress/bagit-java/blob/master/src/main/java/gov/loc/repository/bagit/verify/PayloadVerifier.java#L115-L134) and then verifies them (see https://github.com/LibraryOfCongress/bagit-java/blob/master/src/main/java/gov/loc/repository/bagit/verify/PayloadVerifier.java#L102-L103) |
Thanks for the quick response (as always!). I now see what my confusion was: in bagit-java/src/main/java/gov/loc/repository/bagit/verify/PayloadVerifier.java Lines 98 to 110 in 2b7002e
Thanks for the clarification. That helped a lot. |
…fy all manifests, not just payload manifest
In BagIt v16 spec it says on completeness of a bag:
Likewise in earlier specs (v14) it says:
However, the
BagVerifier
only verifies the completeness in terms of the payload manifests, not in terms of the tag manifests. Shouldn't that be added also? Or is that done somewhere else?The text was updated successfully, but these errors were encountered: