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

com.github.dockerjava.jaxrs.ListContainersCmdExec Maven / Gradle / Ivy

There is a newer version: 3.4.2
Show newest version
package com.github.dockerjava.jaxrs;

import java.util.List;

import javax.ws.rs.client.WebTarget;
import javax.ws.rs.core.GenericType;
import javax.ws.rs.core.MediaType;

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

import com.github.dockerjava.api.command.ListContainersCmd;
import com.github.dockerjava.api.model.Container;

public class ListContainersCmdExec extends AbstrDockerCmdExec> implements ListContainersCmd.Exec {
	
	private static final Logger LOGGER = LoggerFactory.getLogger(ListContainersCmdExec.class);
	
	public ListContainersCmdExec(WebTarget baseResource) {
		super(baseResource);
	}

	@Override
	protected List execute(ListContainersCmd command) {
		WebTarget webResource = getBaseResource().path("/containers/json")
                .queryParam("all", command.hasShowAllEnabled() ? "1" : "0")
                .queryParam("since", command.getSinceId())
                .queryParam("before", command.getBeforeId())
                .queryParam("size", command.hasShowSizeEnabled() ? "1" : "0");

        if (command.getLimit() >= 0) {
            webResource = webResource.queryParam("limit", String.valueOf(command.getLimit()));
        }

		LOGGER.trace("GET: {}", webResource);
		List containers = webResource.request().accept(MediaType.APPLICATION_JSON).get(new GenericType>() {
        });
		LOGGER.trace("Response: {}", containers);

		return containers;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy