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

com.aliyun.datahub.model.ShardDesc Maven / Gradle / Ivy

There is a newer version: 2.25.6
Show newest version
package com.aliyun.datahub.model;

/**
 * Created by dongxiao on 16-3-28.
 */
public class ShardDesc {
    private String shardId;
    private String beginHashKey;
    private String endHashKey;

    public ShardDesc() { }

    public String getShardId() {
        return shardId;
    }

    public void setShardId(String shardId) {
        this.shardId = shardId;
    }

    public String getBeginHashKey() {
        return beginHashKey;
    }

    public void setBeginHashKey(String beginHashKey) {
        this.beginHashKey = beginHashKey;
    }

    public String getEndHashKey() {
        return endHashKey;
    }

    public void setEndHashKey(String endHashKey) {
        this.endHashKey = endHashKey;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy