com.applitools.eyes.ServerConnectorFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eyes-connectivity-java3-jersey2x Show documentation
Show all versions of eyes-connectivity-java3-jersey2x Show documentation
Applitools Eyes SDK REST API communication implementation depending on Jersey version 2x
package com.applitools.eyes;
import java.net.URI;
/**
* Encapsulates creation of a connectivity provider.
*/
public class ServerConnectorFactory {
/***
*
* @param logger A logger instance.
* @param sdkName An identifier for the current agent. Can be any string.
* @param serverUrl The URI of the Eyes server.
*/
static ServerConnector create(Logger logger, String sdkName, URI
serverUrl) {
return new Jersey2xServerConnector(logger, sdkName, serverUrl);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy