com.consol.citrus.validation.matcher.DefaultValidationMatcherRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of citrus-base Show documentation
Show all versions of citrus-base Show documentation
Citrus base and default implementation
package com.consol.citrus.validation.matcher;
/**
* Default registry automatically adds default validation matcher library.
* @author Christoph Deppisch
*/
public class DefaultValidationMatcherRegistry extends ValidationMatcherRegistry {
/**
* Constructor initializes with default validation matcher library.
*/
public DefaultValidationMatcherRegistry() {
this.addValidationMatcherLibrary(new DefaultValidationMatcherLibrary());
}
}