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

com.alibaba.otter.canal.client.impl.running.ClientRunningData Maven / Gradle / Ivy

There is a newer version: 1.1.8
Show newest version
package com.alibaba.otter.canal.client.impl.running;

/**
 * client running状态信息
 * 
 * @author jianghang 2012-11-22 下午03:41:50
 * @version 1.0.0
 */
public class ClientRunningData {

    private short   clientId;
    private String  address;
    private boolean active = true;

    public short getClientId() {
        return clientId;
    }

    public void setClientId(short clientId) {
        this.clientId = clientId;
    }

    public String getAddress() {
        return address;
    }

    public void setAddress(String address) {
        this.address = address;
    }

    public boolean isActive() {
        return active;
    }

    public void setActive(boolean active) {
        this.active = active;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy