vagrant.impl.cli.parser.AllStatusParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vagrant-java-bindings Show documentation
Show all versions of vagrant-java-bindings Show documentation
Wrapper over the CLI Vagrant tool presented in a Java API
package vagrant.impl.cli.parser;
import java.io.File;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Map;
import vagrant.api.domain.Machine;
public class AllStatusParser implements CliParser> {
private File path;
public AllStatusParser(File path) {
this.path = path;
}
@Override
public Collection parse(String out) {
Collection
© 2015 - 2024 Weber Informatics LLC | Privacy Policy