Package com.elasticinbox.core

Examples of com.elasticinbox.core.AccountDAO


    cluster = HFactory.getOrCreateCluster("TestCluster", conf);
    keyspace = HFactory.createKeyspace(KEYSPACE, cluster, clp);
   
    dao = new CassandraDAOFactory();
    CassandraDAOFactory.setKeyspace(keyspace);
    AccountDAO accountDAO = dao.getAccountDAO();
    accountDAO.add(new Mailbox(MAILBOX));
  }
View Full Code Here


  @After
  public void teardownCase() throws IOException {
    keyspace = null;
    cluster = null;

    AccountDAO accountDAO = dao.getAccountDAO();
    accountDAO.delete(new Mailbox(MAILBOX));
  }
View Full Code Here

TOP

Related Classes of com.elasticinbox.core.AccountDAO

Copyright © 2018 www.massapicom. 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.