-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature: Add backend for topic events view based on offset range (#2551)
* Feature: Add backend for topic events view based on offset range Signed-off-by: khatib tamal <[email protected]> * revert accidental change Signed-off-by: khatib tamal <[email protected]> * removed slf4j from TopicContentsControllerIT Signed-off-by: khatib tamal <[email protected]> * code review changes Signed-off-by: khatib tamal <[email protected]> * ran mvn spotless Signed-off-by: khatib tamal <[email protected]> * code review changes and ClusterApiControllerIT improvement Signed-off-by: Khatib Tamal <[email protected]> --------- Signed-off-by: khatib tamal <[email protected]> Signed-off-by: Khatib Tamal <[email protected]>
- Loading branch information
1 parent
019b916
commit 10ef3eb
Showing
8 changed files
with
414 additions
and
102 deletions.
There are no files selected for viewing
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
15 changes: 15 additions & 0 deletions
15
cluster-api/src/main/java/io/aiven/klaw/clusterapi/models/enums/TopicContentType.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,15 @@ | ||
package io.aiven.klaw.clusterapi.models.enums; | ||
|
||
import lombok.Getter; | ||
|
||
@Getter | ||
public enum TopicContentType { | ||
CUSTOM("custom"), | ||
RANGE("range"); | ||
|
||
private final String value; | ||
|
||
TopicContentType(String value) { | ||
this.value = value; | ||
} | ||
} |
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
Oops, something went wrong.