org.vebqa.vebtal.TestAdaptionPlugin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vebtal-api Show documentation
Show all versions of vebtal-api Show documentation
define common api, interfaces and models for opental
package org.vebqa.vebtal;
import org.apache.commons.configuration2.CombinedConfiguration;
import javafx.scene.control.Tab;
@SuppressWarnings("restriction")
public interface TestAdaptionPlugin {
TestAdaptionType getType();
String getName();
Tab startup();
CombinedConfiguration loadConfig();
boolean shutdown();
Class> getImplementation();
String getAdaptionID();
}