com.github.nosan.embedded.cassandra.support.ArtifactStoreBuilder Maven / Gradle / Ivy
/*
* Copyright 2012-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.github.nosan.embedded.cassandra.support;
import java.util.Objects;
import de.flapdoodle.embed.process.config.store.IDownloadConfig;
import de.flapdoodle.embed.process.io.directories.PropertyOrTempDirInPlatformTempDir;
import de.flapdoodle.embed.process.store.Downloader;
import org.slf4j.Logger;
/**
* {@link de.flapdoodle.embed.process.store.ArtifactStoreBuilder Artifact Store Builder }
* with default behaviour.
*
* @author Dmytro Nosan
*/
public class ArtifactStoreBuilder
extends de.flapdoodle.embed.process.store.ArtifactStoreBuilder {
public ArtifactStoreBuilder() {
this(new DownloadConfigBuilder().build());
}
public ArtifactStoreBuilder(Logger logger) {
this(new DownloadConfigBuilder(
Objects.requireNonNull(logger, "Logger must not be null")).build());
}
private ArtifactStoreBuilder(IDownloadConfig downloadConfig) {
executableNaming().overwriteDefault(new OriginTempNaming());
tempDir().overwriteDefault(new PropertyOrTempDirInPlatformTempDir());
downloader().overwriteDefault(new Downloader());
download().overwriteDefault(downloadConfig);
useCache().overwriteDefault(false);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy