-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Further annotation repo functionality
- Message logging and progress reporting - Support for aborting - Support for choosing match by GUID or MD5 - During import, using a loading cache for item retrieval so that if multiple markups in a series are all added to the same item, the search for the item occurs just the first time and then the cache offers up that item on subsequent requests.
- Loading branch information
1 parent
92805f8
commit ac2f380
Showing
3 changed files
with
160 additions
and
12 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
Java/src/main/java/com/nuix/superutilities/annotations/AnnotationMatchingMethod.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package com.nuix.superutilities.annotations; | ||
|
||
public enum AnnotationMatchingMethod { | ||
GUID, | ||
MD5 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters