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

cloud.localstack.docker.command.Command Maven / Gradle / Ivy

The newest version!
package cloud.localstack.docker.command;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;

import cloud.localstack.docker.DockerExe;

public abstract class Command {

    protected final DockerExe dockerExe = new DockerExe();

    protected List options = new ArrayList<>();

    protected void addOptions(String ...items) {
        options.addAll(Arrays.asList(items));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy