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

com.github.jerryxia.devhelper.requestcapture.log.LogEntryStorageQueryResult Maven / Gradle / Ivy

Go to download

This is a helper tool library in developing or testing java web application.

There is a newer version: 1.1.2
Show newest version
package com.github.jerryxia.devhelper.requestcapture.log;

import java.util.List;

/**
 * @author Administrator
 *
 */
public class LogEntryStorageQueryResult {
    private final long           lastIndex;
    private final List list;

    public LogEntryStorageQueryResult(long lastIndex, List data) {
        this.lastIndex = lastIndex;
        this.list = data;
    }

    public long getLastIndex() {
        return lastIndex;
    }

    public List getList() {
        return list;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy