org.enodeframework.queue.TopicData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode Show documentation
Show all versions of enode Show documentation
The enodeframework core implementation.
package org.enodeframework.queue;
/**
* @author [email protected]
*/
public class TopicData {
private String topic;
private String tags;
public TopicData(String topic, String tags) {
this.topic = topic;
this.tags = tags;
}
public String getTopic() {
return topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
public String getTags() {
return tags;
}
public void setTags(String tags) {
this.tags = tags;
}
}