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

com.github.dreamhead.moco.matcher.OrRequestMatcher Maven / Gradle / Ivy

package com.github.dreamhead.moco.matcher;

import com.github.dreamhead.moco.Request;
import com.github.dreamhead.moco.RequestMatcher;

public final class OrRequestMatcher extends CompositeRequestMatcher {
    public OrRequestMatcher(final Iterable matchers) {
        super(matchers);
    }

    @Override
    protected boolean doMatch(final Request request, final Iterable matchers) {
        for (RequestMatcher matcher : matchers) {
            if (matcher.match(request)) {
                return true;
            }
        }

        return false;
    }

    @Override
    protected RequestMatcher newMatcher(final Iterable matchers) {
        return new OrRequestMatcher(matchers);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy