io.redskap.swagger.brake.core.BreakChecker Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swagger-brake Show documentation
Show all versions of swagger-brake Show documentation
Swagger contract checker for breaking API changes
package io.redskap.swagger.brake.core;
import java.util.Collection;
import io.redskap.swagger.brake.core.model.Specification;
public interface BreakChecker {
Collection check(Specification oldApi, Specification newApi);
}