package com.forter.contracts; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * Marks enrichment bolts that just alter and add to the tuple but do not "absorb" anything */ @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE}) public @interface EnrichmentBolt { String[] fieldsToOmit() default {}; }