package org.hivedb.annotations; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /*** * Identifies a property that should be ignored during processing by the random value generator * etc. * @author andylikuski * */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface GeneratorIgnore {}