com.slickqa.executioner.base.AutoloadComponent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of executioner-base-verticle Show documentation
Show all versions of executioner-base-verticle Show documentation
Base classes used to build verticles for Executioner.
The newest version!
package com.slickqa.executioner.base;
import java.lang.annotation.ElementType;
import java.lang.annotation.Target;
/**
* This annotation is used to mark a component that should be initialized
* on startup. Executioner will locate it, use Guice to create an instance, and
* add it to the appropriate list depending on what interfaces it implements.
*/
@Target(ElementType.TYPE)
public @interface AutoloadComponent {
}