com.github.dockerjava.netty.exec.ListImagesCmdExec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-java Show documentation
Show all versions of docker-java Show documentation
Java API Client for Docker
package com.github.dockerjava.netty.exec;
import java.util.List;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.fasterxml.jackson.core.type.TypeReference;
import com.github.dockerjava.api.command.ListImagesCmd;
import com.github.dockerjava.api.model.Image;
import com.github.dockerjava.core.DockerClientConfig;
import com.github.dockerjava.core.util.FiltersEncoder;
import com.github.dockerjava.netty.MediaType;
import com.github.dockerjava.netty.WebTarget;
public class ListImagesCmdExec extends AbstrSyncDockerCmdExec> implements ListImagesCmd.Exec {
private static final Logger LOGGER = LoggerFactory.getLogger(ListImagesCmdExec.class);
public ListImagesCmdExec(WebTarget baseResource, DockerClientConfig dockerClientConfig) {
super(baseResource, dockerClientConfig);
}
@Override
protected List execute(ListImagesCmd command) {
WebTarget webTarget = getBaseResource().path("/images/json");
webTarget = booleanQueryParam(webTarget, "all", command.hasShowAllEnabled());
if (command.getFilters() != null && !command.getFilters().isEmpty()) {
webTarget = webTarget.queryParam("filters", FiltersEncoder.jsonEncode(command.getFilters()));
}
if (command.getImageNameFilter() != null) {
webTarget = webTarget.queryParam("filter", command.getImageNameFilter());
}
LOGGER.trace("GET: {}", webTarget);
List images = webTarget.request().accept(MediaType.APPLICATION_JSON)
.get(new TypeReference>() {
});
LOGGER.trace("Response: {}", images);
return images;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy