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

org.testcontainers.containers.traits.VncService Maven / Gradle / Ivy

package org.testcontainers.containers.traits;

/**
 * A container which exposes a VNC server.
 */
public interface VncService {
    /**
     * @return a URL which can be used to connect to the VNC server from the machine running the tests. Exposed for convenience, e.g. to aid manual debugging
     */
    String getVncAddress();

    /**
     * @return the VNC password for this server
     */
    String getPassword();

    /**
     * @return the port number on which the VNC server is running
     */
    int getPort();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy