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

io.swagger.config.FilterFactory Maven / Gradle / Ivy

There is a newer version: 2.0.0-rc2
Show newest version
package io.swagger.config;

import io.swagger.core.filter.SwaggerSpecFilter;

public class FilterFactory {
    protected static SwaggerSpecFilter FILTER = null;

    public static SwaggerSpecFilter getFilter() {
        return FILTER;
    }

    public static void setFilter(SwaggerSpecFilter filter) {
        FILTER = filter;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy