com.github.jerryxia.devhelper.requestcapture.log.LogEntryStorageQueryResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devhelper Show documentation
Show all versions of devhelper Show documentation
This is a helper tool library in developing or testing java web application.
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