com.github.dreamhead.moco.MocoConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of moco-core Show documentation
Show all versions of moco-core Show documentation
Moco is an easy setup stub framework, mainly focusing on testing and integration.
package com.github.dreamhead.moco;
public interface MocoConfig {
boolean isFor(final String id);
T apply(final T target);
String FILE_ID = "file";
String URI_ID = "uri";
String REQUEST_ID = "request";
String RESPONSE_ID = "response";
}