org.joyqueue.network.command.Topic Maven / Gradle / Ivy
/**
* Copyright 2019 The JoyQueue Authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.joyqueue.network.command;
import org.joyqueue.domain.ConsumerPolicy;
import org.joyqueue.domain.ProducerPolicy;
import org.joyqueue.domain.TopicType;
import org.joyqueue.exception.JoyQueueCode;
import java.io.Serializable;
import java.util.Map;
/**
* Topic
*
* author: gaohaoxiang
* date: 2018/11/30
*/
public class Topic implements Serializable {
private String topic;
private ProducerPolicy producerPolicy;
private ConsumerPolicy consumerPolicy;
private TopicType type;
private Map partitionGroups;
private JoyQueueCode code;
public void setTopic(String topic) {
this.topic = topic;
}
public String getTopic() {
return topic;
}
public ProducerPolicy getProducerPolicy() {
return producerPolicy;
}
public void setProducerPolicy(ProducerPolicy producerPolicy) {
this.producerPolicy = producerPolicy;
}
public ConsumerPolicy getConsumerPolicy() {
return consumerPolicy;
}
public void setConsumerPolicy(ConsumerPolicy consumerPolicy) {
this.consumerPolicy = consumerPolicy;
}
public TopicType getType() {
return type;
}
public void setType(TopicType type) {
this.type = type;
}
public Map getPartitionGroups() {
return partitionGroups;
}
public void setPartitionGroups(Map partitionGroups) {
this.partitionGroups = partitionGroups;
}
public void setCode(JoyQueueCode code) {
this.code = code;
}
public JoyQueueCode getCode() {
return code;
}
}