return this;
}
public VagrantFolderTemplateConfiguration build() {
if(localFolder == null && uriTemplate == null) {
throw new VagrantBuilderException("localFolder or uriTemplate need to be specified");
}
if(pathInVagrantFolder == null) {
throw new VagrantBuilderException("pathInVagrantFolder need to be specified");
}
if (localFolder != null) {
return new VagrantFolderTemplateConfiguration(localFolder,
pathInVagrantFolder);
} else {