
com.aliyun.openservices.log.flink.model.PullLogsResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of flink-log-connector-experimental Show documentation
Show all versions of flink-log-connector-experimental Show documentation
Flink Connector for Aliyun Log Service
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