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

com.testfabrik.webmate.javasdk.browsersession.ExpeditionSpec 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 ExpeditionSpecs.
 */
@JsonTypeInfo(
   use = JsonTypeInfo.Id.NAME,
   include = JsonTypeInfo.As.PROPERTY,
   property = "type")
 @JsonSubTypes({
     @JsonSubTypes.Type(value = LiveExpeditionSpec.class),
     @JsonSubTypes.Type(value = OfflineExpeditionSpec.class)
 })
public interface ExpeditionSpec {
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy