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

com.testvagrant.optimus.core.models.TargetDetails Maven / Gradle / Ivy

Go to download

Optimus Lite API to manage test devices and create appium driver based on platform

There is a newer version: 0.1.7-beta
Show newest version
package com.testvagrant.optimus.core.models;

import com.testvagrant.optimus.core.models.mobile.DeviceType;
import lombok.*;

import java.io.Serializable;

@Getter
@Setter
@Builder
public class TargetDetails implements Serializable {
  private String name;
  private OptimusSupportedPlatforms platform;
  private String platformVersion;
  private DeviceType runsOn;
  private String udid;

  @Override
  public String toString() {
    return "{"
        + "\"deviceName\":\""
        + name
        + "\""
        + ", \"platform\":\""
        + platform
        + "\""
        + ", \"platformVersion\":\""
        + platformVersion
        + "\""
        + ", \"runsOn\":\""
        + runsOn
        + "\""
        + ", \"udid\":\""
        + udid
        + "\""
        + "}}";
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy