All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.wenhao.stub.matcher.MethodMatcher Maven / Gradle / Ivy

Go to download

Mushrooms is an easy setup failover and stub framework. To ensure high levels of efficiency for remote service integration.

There is a newer version: 3.0.8
Show newest version
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