org.cassandraunit.dataset.commons.ParsedRow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cassandra-unit Show documentation
Show all versions of cassandra-unit Show documentation
Test framework to develop with Cassandra
package org.cassandraunit.dataset.commons;
import java.util.ArrayList;
import java.util.List;
/**
* @author Jeremy Sevellec
*/
public class ParsedRow {
private String key;
private List superColumns = new ArrayList();
private List columns = new ArrayList();
public String getKey() {
return key;
}
public void setKey(String key) {
this.key = key;
}
public List getSuperColumns() {
return superColumns;
}
public void setSuperColumns(List superColumns) {
this.superColumns = superColumns;
}
public void setColumns(List columns) {
this.columns = columns;
}
public List getColumns() {
return columns;
}
}