com.github.dockerjava.api.command.ListVolumesResponse 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.api.command;
import java.util.List;
import org.apache.commons.lang.builder.ToStringBuilder;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
*
* @author Marcus Linke
*/
@JsonIgnoreProperties(ignoreUnknown = true)
public class ListVolumesResponse {
@JsonProperty("Volumes")
private List volumes;
public List getVolumes() {
return volumes;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
}