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

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

package com.github.tomakehurst.wiremock.matching;

import com.fasterxml.jackson.annotation.JsonProperty;

public class RegexPattern extends AbstractRegexPattern {

    public RegexPattern(@JsonProperty("matches") String regex) {
        super(regex);
    }

    public String getMatches() {
        return expectedValue;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy