View Javadoc

1   // BSD License (http://www.galagosearch.org/license)
2   
3   package org.galagosearch.tupleflow.execution;
4   
5   import java.lang.annotation.Retention;
6   import java.lang.annotation.RetentionPolicy;
7   
8   /***
9    * This annotation is applied to Step classes that don't need any extra
10   * verification before they're executed.  Classes that don't take
11   * any parameters and don't load any readers or writers fall into this
12   * category.  Using this annotation tells the verification stage not
13   * to issue a warning when it doesn't find a verify class method.
14   *
15   * @author trevor
16   */
17  @Retention(RetentionPolicy.RUNTIME)
18  public @interface Verified {
19  }