All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.thucydides.core.requirements.ReleaseProvider Maven / Gradle / Ivy

package net.thucydides.core.requirements;

import net.thucydides.core.model.Release;

import java.util.List;

/**
 * This interface is used to implement plugins that provide a complete list of the known releases.
 * It should be used to extend a class that implements the RequirementsTagProvider interface.
 *
 */
public interface ReleaseProvider {
    /**
     * Return a full tree-structure of known releases.
     */
    List getReleases();

    /**
     * Is this provider currently activated
     * Some release providers can be deactivated via system properties.
     */
    boolean isActive();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy