Examples of ICassandraSettings


Examples of org.wicketstuff.datastores.cassandra.ICassandraSettings

public class CassandraDataStoreApplication extends BaseDataStoreApplication {
 
  @Override
  protected IDataStore createDataStore() {
    ICassandraSettings settings = new CassandraSettings();
    settings.getContactPoints().add("localhost");
    return new CassandraDataStore(settings);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.