
com.qdesrame.openapi.diff.compare.ReferenceDiffCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-diff Show documentation
Show all versions of openapi-diff Show documentation
Utility for comparing two OpenAPI specifications.
package com.qdesrame.openapi.diff.compare;
import java.util.HashMap;
import java.util.Map;
import java.util.Optional;
/**
* Created by adarsh.sharma on 07/01/18.
*/
public abstract class ReferenceDiffCache {
private Map> refDiffMap;
public ReferenceDiffCache() {
this.refDiffMap = new HashMap<>();
}
private Optional getFromCache(String leftRef, String rightRef) {
Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy