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

com.applitools.eyes.ServerConnectorFactory Maven / Gradle / Ivy

There is a newer version: 3.215.0-beta
Show newest version
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