vagrant.api.BoxApi 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.api;
import java.util.Collection;
import vagrant.api.domain.Box;
import vagrant.api.option.BoxAddOptions;
public interface BoxApi {
public void add(String name, BoxAddOptions options);
public Collection list();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy