vagrant.Vagrant 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;
import java.io.File;
import vagrant.api.VagrantApi;
import vagrant.api.domain.Machine;
import vagrant.impl.cli.VagrantImpl;
public class Vagrant {
public static VagrantApi forPath(File path) {
return new VagrantImpl(path);
}
public static VagrantApi forMachine(Machine input) {
return forPath(input.getPath());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy