org.usergrid.cassandra.SchemaManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of usergrid-test-utils Show documentation
Show all versions of usergrid-test-utils Show documentation
Test Utilities for Usergrid system.
package org.usergrid.cassandra;
/**
* @author zznate
*/
public interface SchemaManager {
/**
* Create any schema necessary for test execution.
*
*/
void create();
/**
*
* @return true if the schema defined by this manager already exists
*/
boolean exists();
/**
* Any breath-of-life data needed for the base system
*/
void populateBaseData();
/**
* marshall the data removal
*/
void destroy();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy