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

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy