org.mockserver.model.RegexBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mockserver-core Show documentation
Show all versions of mockserver-core Show documentation
Functionality used by all MockServer modules for matching and expectations
package org.mockserver.model;
/**
* @author jamesdbloom
*/
public class RegexBody extends Body {
private String regex;
public RegexBody(String regex) {
super(Type.REGEX);
this.regex = regex;
}
public String getValue() {
return regex;
}
public static RegexBody regex(String regex) {
return new RegexBody(regex);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy