Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If your authoring tool will be storing links then your IToolAdapter interface must implement the following method:

Code Block
languagejava
 public interface IToolAdapter {
 // ...
 void updateArtifactLinks(@NonNull String componentId,
                             @NonNull String localConfigurationId,
                             @NonNull String artifactConceptId,
  
                          @NonNull Set<LinkTao> links);
//...
}

...