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

io.swagger.parser.SwaggerParserExtension Maven / Gradle / Ivy

There is a newer version: 2.0.0-rc1
Show newest version
package io.swagger.parser;

import com.fasterxml.jackson.databind.JsonNode;
import io.swagger.models.Swagger;
import io.swagger.models.auth.AuthorizationValue;

import java.io.IOException;
import java.util.List;

public interface SwaggerParserExtension {
    Swagger read(String location, List auths) throws IOException;

    Swagger read(JsonNode node) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy