All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.taobao.diamond.domain.ConfigInfoEx Maven / Gradle / Ivy

There is a newer version: 3.2.4
Show newest version
package com.taobao.diamond.domain;

/**
 * 
 * @author leiwen.zh
 * 
 */
public class ConfigInfoEx extends ConfigInfo {

    private static final long serialVersionUID = -1L;

    private int status;
    private String message;

    public ConfigInfoEx() {
        super();
    }

    public ConfigInfoEx(String dataId, String group, String content) {
        super(dataId, group, content);
    }

    public ConfigInfoEx(String dataId, String group, String content, int status, String message){
        super(dataId, group, content);
        this.status = status;
        this.message = message;
    }


    public int getStatus() {
        return status;
    }


    public void setStatus(int status) {
        this.status = status;
    }


    public String getMessage() {
        return message;
    }


    public void setMessage(String message) {
        this.message = message;
    }


	@Override
	public String toString() {
		return "ConfigInfoEx [status=" + status + ", message=" + message
				+ ", dataId=" + getDataId() + ", group=" + getGroup()
				+ ", appName=" + getAppName() + ", content=" + getContent()
				+ "]";
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy