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

io.openapiprocessor.jsonschema.schema.ResolverResult Maven / Gradle / Ivy

There is a newer version: 2024.4
Show newest version
/*
 * Copyright 2022 https://github.com/openapi-processor/openapi-parser
 * PDX-License-Identifier: Apache-2.0
 */

package io.openapiprocessor.jsonschema.schema;

public class ResolverResult {
    private final Scope scope;
    private final Object document;
    private final ReferenceRegistry registry;
    private final DocumentStore documents;

    public ResolverResult (Scope scope, Object document, ReferenceRegistry registry, DocumentStore documents) {
        this.scope = scope;
        this.document = document;
        this.registry = registry;
        this.documents = documents;
    }

    public Scope getScope () {
        return scope;
    }

    public Object getDocument () {
        return document;
    }

    public ReferenceRegistry getRegistry () {
        return registry;
    }

    public DocumentStore getDocuments () {
        return documents;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy