-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Manage Confluent tags * Update tags creation and deletion * Fix tests * Improve tests * Improve tests * Only display forbidden tags * Add links to Confluent Cloud tags --------- Co-authored-by: Loïc Greffier <[email protected]>
- Loading branch information
1 parent
2851ceb
commit 46e78c3
Showing
18 changed files
with
904 additions
and
81 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
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
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
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
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
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
12 changes: 12 additions & 0 deletions
12
src/main/java/com/michelin/ns4kafka/services/clients/schema/entities/TagInfo.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,12 @@ | ||
package com.michelin.ns4kafka.services.clients.schema.entities; | ||
|
||
import lombok.Builder; | ||
|
||
/** | ||
* Tag name. | ||
* | ||
* @param name Tag name | ||
*/ | ||
@Builder | ||
public record TagInfo(String name) { | ||
} |
20 changes: 20 additions & 0 deletions
20
src/main/java/com/michelin/ns4kafka/services/clients/schema/entities/TagTopicInfo.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,20 @@ | ||
package com.michelin.ns4kafka.services.clients.schema.entities; | ||
|
||
import lombok.Builder; | ||
|
||
/** | ||
* Information on tag. | ||
* | ||
* @param entityName The entity name | ||
* @param entityType The entity type | ||
* @param typeName The type name | ||
* @param entityStatus The entity status | ||
*/ | ||
@Builder | ||
public record TagTopicInfo(String entityName, String entityType, String typeName, String entityStatus) { | ||
|
||
@Override | ||
public String toString() { | ||
return entityName + "/" + typeName; | ||
} | ||
} |
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.