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

com.github.dockerjava.core.command.AbstrDockerCmd Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
package com.github.dockerjava.core.command;

import static com.google.common.base.Preconditions.checkNotNull;

import java.io.IOException;

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

import com.github.dockerjava.api.DockerException;
import com.github.dockerjava.api.command.DockerCmd;
import com.github.dockerjava.api.command.DockerCmdExec;

public abstract class AbstrDockerCmd, RES_T> implements DockerCmd {
    
    private final static Logger LOGGER = LoggerFactory.getLogger(AbstrDockerCmd.class);

	protected DockerCmdExec execution;
	
	public AbstrDockerCmd(DockerCmdExec execution) {
		checkNotNull(execution, "execution was not specified");
		this.execution = execution;
	}

    @Override
    @SuppressWarnings("unchecked")
	public RES_T exec() throws DockerException {
		LOGGER.debug("Cmd: {}", this);
		return execution.exec((CMD_T)this);
	}

    @Override
	public void close() throws IOException {}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy