com.applitools.eyes.IEyesBase Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-sdk-core-java3 Show documentation
Show all versions of eyes-sdk-core-java3 Show documentation
Applitools Eyes SDK base for Java
The newest version!
package com.applitools.eyes;
import java.net.URI;
public interface IEyesBase {
String getApiKey();
URI getServerUrl();
void setIsDisabled(Boolean isDisabled);
Boolean getIsDisabled();
String getFullAgentId();
boolean getIsOpen();
void setLogHandler(LogHandler logHandler);
LogHandler getLogHandler();
Logger getLogger();
void addProperty(String name, String value);
void clearProperties();
TestResults abortIfNotClosed();
void closeAsync();
void abortAsync();
TestResults abort();
}