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

com.github.dockerjava.core.command.RemoveImageCmdImpl Maven / Gradle / Ivy

There is a newer version: 3.4.1
Show newest version
package com.github.dockerjava.core.command;

import static com.google.common.base.Preconditions.checkNotNull;

import com.github.dockerjava.api.command.RemoveImageCmd;
import com.github.dockerjava.api.exception.NotFoundException;

/**
 *
 * Remove an image, deleting any tags it might have.
 *
 */
public class RemoveImageCmdImpl extends AbstrDockerCmd implements RemoveImageCmd {

    private String imageId;

    private Boolean force, noPrune;

    public RemoveImageCmdImpl(RemoveImageCmd.Exec exec, String imageId) {
        super(exec);
        withImageId(imageId);
    }

    @Override
    public String getImageId() {
        return imageId;
    }

    @Override
    public Boolean hasForceEnabled() {
        return force;
    }

    @Override
    public Boolean hasNoPruneEnabled() {
        return noPrune;
    }

    @Override
    public RemoveImageCmd withImageId(String imageId) {
        checkNotNull(imageId, "imageId was not specified");
        this.imageId = imageId;
        return this;
    }

    @Override
    public RemoveImageCmd withForce(Boolean force) {
        this.force = force;
        return this;
    }

    @Override
    public RemoveImageCmd withNoPrune(Boolean noPrune) {
        this.noPrune = noPrune;
        return this;
    }

    /**
     * @throws NotFoundException
     *             No such image
     */
    @Override
    public Void exec() throws NotFoundException {
        return super.exec();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy