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

io.swagger.reader.SwaggerReaderFactory Maven / Gradle / Ivy

There is a newer version: 1.0.71
Show newest version
package io.swagger.reader;

import javax.annotation.Nonnull;

public final class SwaggerReaderFactory {
    private final String proxy;

    public SwaggerReaderFactory(@Nonnull final SwaggerReaderConfiguration cfg) {
        proxy = cfg.proxy;
    }

    public SwaggerReader newReader() {
        return proxy == null
                ? new SimpleSwaggerReader()
                : new ProxySwaggerReader(proxy);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy