use of org.commonjava.indy.core.conf.IndyStoreManagerConfig in project indy by Commonjava.
the class CassandraTCKFixtureProvider method init.
protected void init() throws Exception {
EmbeddedCassandraServerHelper.startEmbeddedCassandra();
CassandraConfig config = new CassandraConfig();
config.setEnabled(true);
config.setCassandraHost("localhost");
config.setCassandraPort(9142);
client = new CassandraClient(config);
IndyStoreManagerConfig storeConfig = new IndyStoreManagerConfig("noncontent", 1);
DefaultIndyConfiguration indyConfig = new DefaultIndyConfiguration();
indyConfig.setKeyspaceReplicas(1);
client = new CassandraClient(config);
CassandraStoreQuery storeQuery = new CassandraStoreQuery(client, storeConfig, indyConfig);
dataManager = new CassandraStoreDataManager(storeQuery, new IndyObjectMapper(true));
}
use of org.commonjava.indy.core.conf.IndyStoreManagerConfig in project indy by Commonjava.
the class CassandraStoreTest method start.
@Before
public void start() throws Exception {
EmbeddedCassandraServerHelper.startEmbeddedCassandra();
CassandraConfig config = new CassandraConfig();
config.setEnabled(true);
config.setCassandraHost("localhost");
config.setCassandraPort(9142);
client = new CassandraClient(config);
IndyStoreManagerConfig storeConfig = new IndyStoreManagerConfig("noncontent", 1);
DefaultIndyConfiguration indyConfig = new DefaultIndyConfiguration();
indyConfig.setKeyspaceReplicas(1);
storeQuery = new CassandraStoreQuery(client, storeConfig, indyConfig);
}
Aggregations