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

org.testifyproject.github.dockerjava.jaxrs.PingCmdExec Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package org.testifyproject.testifyproject.github.dockerjava.jaxrs;

import javax.ws.rs.client.WebTarget;

import org.testifyproject.slf4j.Logger;
import org.testifyproject.slf4j.LoggerFactory;

import org.testifyproject.testifyproject.github.dockerjava.api.org.testifyproject.testifyprojectmand.PingCmd;
import org.testifyproject.testifyproject.github.dockerjava.core.DockerClientConfig;

public class PingCmdExec extends AbstrSyncDockerCmdExec implements PingCmd.Exec {

    private static final Logger LOGGER = LoggerFactory.getLogger(PingCmdExec.class);

    public PingCmdExec(WebTarget baseResource, DockerClientConfig dockerClientConfig) {
        super(baseResource, dockerClientConfig);
    }

    @Override
    protected Void execute(PingCmd org.testifyproject.testifyprojectmand) {
        WebTarget webResource = getBaseResource().path("/_ping");

        LOGGER.trace("GET: {}", webResource);
        webResource.request().get().close();

        return null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy