Package com.github.dreamhead.moco.handler.failover

Examples of com.github.dreamhead.moco.handler.failover.DefaultFailoverExecutor


    public static Failover failover(final String file) {
        return new Failover(failoverExecutor(checkNotNullOrEmpty(file, "Filename should not be null")), FailoverStrategy.FAILOVER);
    }

    private static DefaultFailoverExecutor failoverExecutor(final String file) {
        return new DefaultFailoverExecutor(new File(checkNotNullOrEmpty(file, "Filename should not be null")));
    }
View Full Code Here

TOP

Related Classes of com.github.dreamhead.moco.handler.failover.DefaultFailoverExecutor

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.