com.alibaba.tmq.common.domain.RelationStatus Maven / Gradle / Ivy
package com.alibaba.tmq.common.domain;
import com.alibaba.tmq.common.constants.Constants;
/**
* 发布订阅关系状态
* @author tianyao.myc
*
*/
public enum RelationStatus implements Constants {
// DISABLE(0, "无效"),
//
// ENABLE(1, "有效");
//
// private int status;
//
// private String description;
//
// private RelationStatus(int status, String description) {
// this.status = status;
// this.description = description;
// }
//
// /**
// * 重写toString方法
// */
// public String toString() {
// return status + BLANK + description;
// }
//
// public int getStatus() {
// return status;
// }
//
// public void setStatus(int status) {
// this.status = status;
// }
//
// public String getDescription() {
// return description;
// }
//
// public void setDescription(String description) {
// this.description = description;
// }
}