org.cassandraunit.dataset.DataSet 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;
import org.cassandraunit.model.ColumnFamilyModel;
import org.cassandraunit.model.KeyspaceModel;
import java.util.List;
/**
* @author Jeremy Sevellec
*/
public interface DataSet {
KeyspaceModel getKeyspace();
List getColumnFamilies();
}