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

com.github.dockerjava.api.command.InspectVolumeCmd Maven / Gradle / Ivy

There is a newer version: 3.4.0
Show newest version
package com.github.dockerjava.api.command;

import javax.annotation.Nonnull;

/**
 * Inspect the details of a volume.
 *
 * @author Marcus Linke
 *
 */
public interface InspectVolumeCmd extends SyncDockerCmd {

    String getName();

    /**
     * @param name
     *            - The volume’s name.
     */
    InspectVolumeCmd withName(@Nonnull String name);

    interface Exec extends DockerCmdSyncExec {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy