@Evolving public interface TopicChange
Modifier and Type | Interface and Description |
---|---|
static class |
TopicChange.RemoveProperty
A topic change to remove a property from the topic.
|
static class |
TopicChange.SetProperty
A topic change to set or update the property and value for the topic.
|
static class |
TopicChange.UpdateTopicComment
A topic change to update the topic comment.
|
Modifier and Type | Method and Description |
---|---|
static TopicChange |
removeProperty(java.lang.String property)
Creates a new topic change to remove a property from the topic.
|
static TopicChange |
setProperty(java.lang.String property,
java.lang.String value)
Creates a new topic change to set or update the property and value for the topic.
|
static TopicChange |
updateComment(java.lang.String newComment)
Creates a new topic change to update the topic comment.
|
static TopicChange updateComment(java.lang.String newComment)
newComment
- The new comment for the topic.static TopicChange setProperty(java.lang.String property, java.lang.String value)
property
- The property name to set.value
- The value to set the property to.static TopicChange removeProperty(java.lang.String property)
property
- The property name to remove.