org.voovan.tools.collection.ScanedObject Maven / Gradle / Ivy
package org.voovan.tools.collection;
import java.util.ArrayList;
import java.util.List;
/**
* Redis 的扫描结果封装对象
*
* @author: helyho
* DBase Framework.
* WebSite: https://github.com/helyho/DBase
* Licence: Apache v2 License
*/
public class ScanedObject {
private String cursor;
private List resultList;
public ScanedObject(String cursor) {
this.cursor = cursor;
this.resultList = new ArrayList();
}
public String getCursor() {
return cursor;
}
public void setCursor(String cursor) {
this.cursor = cursor;
}
public List getResultList() {
return resultList;
}
public void setResultList(List resultList) {
this.resultList = resultList;
}
}