Skip to content
Snippets Groups Projects
Commit 8f8590d4 authored by Richard Cordovano's avatar Richard Cordovano
Browse files

7673 Add ingest job IDs to artifact posts

parent 8aad9566
No related branches found
No related tags found
No related merge requests found
......@@ -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);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment