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

com.xliic.common.Workspace Maven / Gradle / Ivy

Go to download

Bundles multiple OpenAPI files (in JSON or YAML formats) using external references into one JSON file.

There is a newer version: 4.0
Show newest version
/*
 Copyright (c) 42Crunch Ltd. All rights reserved.
 Licensed under the GNU Affero General Public License version 3. See LICENSE.txt in the project root for license information.
*/

package com.xliic.common;

import java.io.IOException;
import java.net.URI;

public interface Workspace {
    public WorkspaceContent read(URI uri) throws IOException, InterruptedException, WorkspaceException;

    public boolean exists(URI uri) throws IOException, InterruptedException;

    public URI relativize(URI uri);

    public URI resolve(String filename);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy