com.commercetools.rmf.validators.Validator.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ctp-validators Show documentation
Show all versions of ctp-validators Show documentation
RAML API client code generators based on the REST Modeling Framework. https://github.com/vrapio/rest-modeling-framework
package com.commercetools.rmf.validators
interface Validator {
fun ValidatorType(): Class
}
interface ValidatorFactory {
fun create(options: List? = null): T
fun create(severity: RuleSeverity, options: List? = null): T
}