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

com.applitools.eyes.universal.dto.WebdriverProxyDto Maven / Gradle / Ivy

There is a newer version: 5.76.0
Show newest version
package com.applitools.eyes.universal.dto;

import com.fasterxml.jackson.annotation.JsonInclude;

/**
 * web driver dto
 */
@JsonInclude(JsonInclude.Include.NON_NULL)
public class WebdriverProxyDto {
    private String url;
    private Boolean tunnel;

    public WebdriverProxyDto(String url, Boolean tunnel) {
        this.url = url;
        this.tunnel = tunnel;
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public Boolean getTunnel() {
        return tunnel;
    }

    public void setTunnel(Boolean tunnel) {
        this.tunnel = tunnel;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy