com.github.wenhao.stub.matcher.MethodMatcher Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mushrooms Show documentation
Show all versions of mushrooms Show documentation
Mushrooms is an easy setup failover and stub framework. To ensure high levels of efficiency for remote service integration.
package com.github.wenhao.stub.matcher;
import com.github.wenhao.common.domain.Request;
public class MethodMatcher implements RequestMatcher {
@Override
public boolean match(final Request stubRequest, final Request realRequest) {
return realRequest.getMethod().matches(stubRequest.getMethod());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy