/* * The Spring Framework is published under the terms * of the Apache Software License. */ package org.springframework.benchmark.cmt.client; import org.springframework.benchmark.cmt.server.Benchmark; /** * * @author Rod Johnson */ public interface BenchmarkFactory { Benchmark getBenchmark() throws Exception; }