From 8f8590d4865383bb78b13a15eff3116190bacb55 Mon Sep 17 00:00:00 2001 From: Richard Cordovano <rcordovano@basistech.com> Date: Fri, 22 Oct 2021 11:55:39 -0400 Subject: [PATCH] 7673 Add ingest job IDs to artifact posts --- bindings/java/src/org/sleuthkit/datamodel/Blackboard.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/bindings/java/src/org/sleuthkit/datamodel/Blackboard.java b/bindings/java/src/org/sleuthkit/datamodel/Blackboard.java index 838bf20b8..482be9e92 100755 --- a/bindings/java/src/org/sleuthkit/datamodel/Blackboard.java +++ b/bindings/java/src/org/sleuthkit/datamodel/Blackboard.java @@ -87,8 +87,9 @@ public final class Blackboard { * @param moduleName The display name of the module posting the artifact. * * @throws BlackboardException The exception is thrown if there is an issue - * posting the artifact. RJCTODO: Deprecate + * posting the artifact. */ + // RJCTODO: Deprecate public void postArtifact(BlackboardArtifact artifact, String moduleName) throws BlackboardException { postArtifacts(Collections.singleton(artifact), moduleName, null); } @@ -104,8 +105,9 @@ public void postArtifact(BlackboardArtifact artifact, String moduleName) throws * @param moduleName The display name of the module posting the artifacts. * * @throws BlackboardException The exception is thrown if there is an issue - * posting the artifact. RJCTODO: Deprecate + * posting the artifact. */ + // RJCTODO: Deprecate public void postArtifacts(Collection<BlackboardArtifact> artifacts, String moduleName) throws BlackboardException { postArtifacts(artifacts, moduleName, null); } -- GitLab