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

com.commercetools.rmf.validators.ResolvedResourcesRule.kt Maven / Gradle / Ivy

Go to download

RAML API client code generators based on the REST Modeling Framework. https://github.com/vrapio/rest-modeling-framework

There is a newer version: 1.0.0-20241120142200
Show newest version
package com.commercetools.rmf.validators

import io.vrap.rmf.raml.model.resources.util.ResourcesSwitch
import org.eclipse.emf.common.util.Diagnostic
import org.eclipse.emf.ecore.EObject

abstract class ResolvedResourcesRule(override val severity: RuleSeverity = RuleSeverity.ERROR, val options: List? = null) : ResourcesSwitch>(), DiagnosticsAware, Validator {

    override fun defaultCase(`object`: EObject?): List {
        return emptyList()
    }

    override fun ValidatorType() = ResolvedResourcesValidator::class.java
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy