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

com.testfabrik.webmate.javasdk.browsersession.VehicleSpecification Maven / Gradle / Ivy

There is a newer version: 0.56
Show newest version
package com.testfabrik.webmate.javasdk.browsersession;

import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;

/**
 * Marker interface for "Expedition Vehicles", e.g. a Browser or a mobile App,
 * that are controlled in an expedition to perform tests. Vehicles are controlled by "Expedition Drivers", e.g.
 * URL lists, a Selenium script, or a crawler.
 */
@JsonTypeInfo(
        use = JsonTypeInfo.Id.NAME,
        include = JsonTypeInfo.As.PROPERTY,
        property = "type")
@JsonSubTypes({
        @JsonSubTypes.Type(value = BrowserSpecification.class),
})
public interface VehicleSpecification {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy