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

com.aliyun.openservices.log.response.GetCheckPointResponse Maven / Gradle / Ivy

There is a newer version: 0.6.115
Show newest version
package com.aliyun.openservices.log.response;

import com.alibaba.fastjson.JSONArray;
import com.aliyun.openservices.log.common.ConsumerGroupShardCheckPoint;

import java.util.Map;

public class GetCheckPointResponse extends Response {

    private static final long serialVersionUID = 4342923949571665580L;

    private ConsumerGroupShardCheckPoint checkpoint;

    public GetCheckPointResponse(Map headers, JSONArray response) {
        super(headers);
        if (response != null && !response.isEmpty()) {
            checkpoint = new ConsumerGroupShardCheckPoint();
            checkpoint.Deserialize(response.getJSONObject(0));
        }
    }

    public ConsumerGroupShardCheckPoint getCheckpoint() {
        return checkpoint;
    }

    public void setCheckpoint(ConsumerGroupShardCheckPoint checkpoint) {
        this.checkpoint = checkpoint;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy