com.github.dreamhead.moco.config.MocoRequestConfig 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.config;
import com.github.dreamhead.moco.MocoConfig;
import com.github.dreamhead.moco.RequestMatcher;
import static com.github.dreamhead.moco.Moco.and;
public class MocoRequestConfig implements MocoConfig {
private final RequestMatcher requestMatcher;
public MocoRequestConfig(final RequestMatcher requestMatcher) {
this.requestMatcher = requestMatcher;
}
@Override
public boolean isFor(final String id) {
return REQUEST_ID.equalsIgnoreCase(id);
}
@Override
public RequestMatcher apply(final RequestMatcher target) {
return and(requestMatcher, target);
}
}