forked from docker-java/docker-java
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathListVolumesCmdExec.java
More file actions
36 lines (25 loc) · 1.35 KB
/
Copy pathListVolumesCmdExec.java
File metadata and controls
36 lines (25 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.github.dockerjava.jaxrs;
import static com.google.common.net.UrlEscapers.urlPathSegmentEscaper;
import javax.ws.rs.client.WebTarget;
import javax.ws.rs.core.MediaType;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.github.dockerjava.api.command.ListVolumesCmd;
import com.github.dockerjava.api.command.ListVolumesResponse;
import com.github.dockerjava.core.DockerClientConfig;
import com.github.dockerjava.core.util.FiltersEncoder;
public class ListVolumesCmdExec extends AbstrSyncDockerCmdExec<ListVolumesCmd, ListVolumesResponse> implements ListVolumesCmd.Exec {
private static final Logger LOGGER = LoggerFactory.getLogger(ListVolumesCmdExec.class);
public ListVolumesCmdExec(WebTarget baseResource, DockerClientConfig dockerClientConfig) {
super(baseResource, dockerClientConfig);
}
@Override
protected ListVolumesResponse execute(ListVolumesCmd command) {
WebTarget webTarget = getBaseResource().path("/volumes");
if (command.getFilters() != null && !command.getFilters().isEmpty()) {
webTarget = webTarget.queryParam("filters", urlPathSegmentEscaper().escape(FiltersEncoder.jsonEncode(command.getFilters())));
}
LOGGER.trace("GET: {}", webTarget);
return webTarget.request().accept(MediaType.APPLICATION_JSON).get(ListVolumesResponse.class);
}
}