package ch.unibe.scg.cells.hadoop; import static java.lang.annotation.ElementType.FIELD; import static java.lang.annotation.ElementType.METHOD; import static java.lang.annotation.ElementType.PARAMETER; import static java.lang.annotation.RetentionPolicy.RUNTIME; import java.lang.annotation.Retention; import java.lang.annotation.Target; import javax.inject.Qualifier; /** Public to allow users to override our configuration. */ public class Annotations { /** See http://hbase.apache.org/book/perf.writing.html */ @Qualifier @Target({ FIELD, PARAMETER, METHOD }) @Retention(RUNTIME) public static @interface WriteToWalEnabled {} @Qualifier @Target({ FIELD, PARAMETER, METHOD }) @Retention(RUNTIME) static @interface IndexFamily {} }