All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.usergrid.cassandra.SchemaManager Maven / Gradle / Ivy

There is a newer version: 0.0.27.1
Show newest version
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