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

com.github.tomakehurst.wiremock.matching.ValueMatcher Maven / Gradle / Ivy

package com.github.tomakehurst.wiremock.matching;

import com.fasterxml.jackson.annotation.JsonIgnore;

public interface ValueMatcher {

    MatchResult match(T value);

    @JsonIgnore
    String getName();

    @JsonIgnore
    String getExpected();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy