Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,16 @@ public interface KafkaTopics {

public final static String REFERENCES_EXPORT_TOPIC = "_citesphere_export_references_topic";
public final static String REFERENCES_EXPORT_DONE_TOPIC = "_citesphere_export_references_done_topic";

/**
* The name of the Kafka topic used for collection import events. Messages published to this topic
* will trigger import processing of citations to a collection/group from BibTex File, which
* is exported from Zotero.
*/
public final static String COLLECTION_IMPORT_TOPIC = "_citesphere_import_collections_topic";
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's add javadoc here explaining what this topic is used for (it's starting to get less intuitively understandable).

/**
* The name of the Kafka topic used for crossref citation import events. Messages published to this topic
* will trigger import processing of citations to a group from crossref.
*/
public final static String REFERENCES_IMPORT_CROSSREF_TOPIC = "_citesphere_import_crossref_topic";
}