com.applitools.eyes.TargetApplication Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-sdk-core-java5 Show documentation
Show all versions of eyes-sdk-core-java5 Show documentation
Applitools Eyes SDK base for Java
/*
* Applitools SDK for Selenium integration.
*/
package com.applitools.eyes;
import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonSubTypes.Type;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
/**
* A base class for encapsulating model about applications to be tested.
*/
@JsonTypeInfo(
use = JsonTypeInfo.Id.NAME,
include = JsonTypeInfo.As.PROPERTY,
property = "$type"
)
/*
* The name's value is according to what the agent expects
*/
@JsonSubTypes({
@Type(value = TargetWebDriverApplication.class,
name = "Applitools.Framework.TargetWebDriverApplication, Core")
})
public class TargetApplication {
}