cloud.localstack.docker.command.Command Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of localstack-utils Show documentation
Show all versions of localstack-utils Show documentation
Java utilities for the LocalStack platform.
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));
}
}