org.usergrid.cassandra.DataControl 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;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* @author zznate
*/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.TYPE})
public @interface DataControl {
boolean skipTruncate() default false; // skips truncate on exit
String schemaManager(); // returns the loader impl
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy