Package de.flapdoodle.embed.mongo.config

Examples of de.flapdoodle.embed.mongo.config.DownloadConfigBuilder


        }

    }

    private IArtifactStore getArtifactStore() {
        IDownloadConfig downloadConfig = new DownloadConfigBuilder().defaultsForCommand(Command.MongoD).downloadPath(downloadPath).build();
        return new ArtifactStoreBuilder().defaults(Command.MongoD).download(downloadConfig).build();
    }
View Full Code Here


        Command command = Command.MongoD;
        IRuntimeConfig runtimeConfig = new RuntimeConfigBuilder()
                .defaults(command)
                .artifactStore(new ArtifactStoreBuilder()
                                       .defaults(command)
                                       .download(new DownloadConfigBuilder()
                                                         .defaultsForCommand(command))
                                       .executableNaming(new ITempNaming() {
                                           @Override
                                           public String nameFor(String prefix, String postfix) {
                                               return prefix + "_axontest_" + counter.getAndIncrement() + "_" + postfix;
View Full Code Here

TOP

Related Classes of de.flapdoodle.embed.mongo.config.DownloadConfigBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.