package org.radargun.traits; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; /** * After the Service is started, all methods tagged be this annotation are called * and respective Traits are injected into Stages. * * @author Radim Vansa <rvansa@redhat.com> */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.METHOD) public @interface ProvidesTrait { }