com.applitools.eyes.universal.dto.AutProxyDto 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
package com.applitools.eyes.universal.dto;
import com.fasterxml.jackson.annotation.JsonInclude;
/**
* abstract autProxy settings dto
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
public class AutProxyDto extends ProxyDto {
private String[] domains;
private String mode;
public void setDomains(String[] domains) { this.domains = domains; }
public String[] getDomains() { return this.domains; }
public void setAutProxyMode(String proxyMode) { this.mode = proxyMode; }
public String getAutProxyMode() { return this.mode; }
}