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

com.aliyun.openservices.log.flink.model.PullLogsResult Maven / Gradle / Ivy

The newest version!
package com.aliyun.openservices.log.flink.model;

import com.aliyun.openservices.log.common.LogGroupData;

import java.util.List;

public class PullLogsResult implements java.io.Serializable {
    private List logGroupList;
    private int shard;
    private String cursor;
    private String nextCursor;

    public PullLogsResult(List logGroupList, int shard, String cursor, String nextCursor) {
        this.logGroupList = logGroupList;
        this.shard = shard;
        this.cursor = cursor;
        this.nextCursor = nextCursor;
    }

    public List getLogGroupList() {
        return logGroupList;
    }

    public void setLogGroupList(List logGroupList) {
        this.logGroupList = logGroupList;
    }

    public int getShard() {
        return shard;
    }

    public void setShard(int shard) {
        this.shard = shard;
    }

    public String getCursor() {
        return cursor;
    }

    public void setCursor(String cursor) {
        this.cursor = cursor;
    }

    public String getNextCursor() {
        return nextCursor;
    }

    public void setNextCursor(String nextCursor) {
        this.nextCursor = nextCursor;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy