org.arquillian.ape.spi.PopulatorService Maven / Gradle / Ivy
package org.arquillian.ape.spi;
/**
* Base class tha all integrations with Populator must implements.
*/
public interface PopulatorService {
/**
* Get annotation used in enricher to inject service backed by this implementation.
* This annotation must be meta-annotated with org.arquillian.cube.populator.api.Populator annotation.
*
* @return Annotation used for identifying this service.
*/
Class getPopulatorAnnotation();
}