package com.lordofthejars.nosqlunit.annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Retention(RetentionPolicy.RUNTIME) @Target({ ElementType.METHOD, ElementType.TYPE }) public @interface ShouldMatchDataSet { String location() default ""; SelectiveMatcher[] withSelectiveMatcher() default {}; }