Package restx.common.UUIDGenerator

Examples of restx.common.UUIDGenerator.DefaultUUIDGenerator


        this.objectMapper = objectMapper;

        // we don't inject it, we don't want during tests to use the playback version, it could perturb
        // tests since the number of calls to the generation depends on the presence of machine id
        // in the file system, which may vary from one test to another
        this.uuidGenerator = new DefaultUUIDGenerator();

        // load settings in private fields
        // this avoid accessing the settings through the underlying config object
        storageEnabled = statsSettings.storageEnable();
        storageStatsDir = new File(statsSettings.storageDir().or(System.getProperty("user.home") + "/.restx/stats"));
View Full Code Here

TOP

Related Classes of restx.common.UUIDGenerator.DefaultUUIDGenerator

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.