
cz.mallat.uasparser.fileparser.Entry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of browsermob-proxy Show documentation
Show all versions of browsermob-proxy Show documentation
A programmatic HTTP/S designed for performance and functional testing
package cz.mallat.uasparser.fileparser;
import java.util.ArrayList;
import java.util.List;
/**
* JavaBean that holds an entry from a parsed file
*
* @author oli
*/
public class Entry {
private String key;
private List data = new ArrayList();
public Entry(String key) {
this.key = key;
}
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public List getData() {
return data;
}
public void setData(List data) {
this.data = data;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy