use of com.github.dreamhead.moco.monitor.QuietMonitor in project moco by dreamhead.
the class MocoRest method restServer.
public static RestServer restServer(final int port, final MocoConfig... configs) {
checkArgument(port > 0, "Port must be greater than zero");
checkNotNull(configs, "Config should not be null");
return new ActualRestServer(of(port), Optional.<HttpsCertificate>absent(), new QuietMonitor(), configs);
}
Aggregations