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

vagrant.Vagrant Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
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