org.spincast.plugins.openapi.bottomup.config.SpincastOpenApiBottomUpPluginConfigDefault Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spincast-plugins-openapi-bottomup Show documentation
Show all versions of spincast-plugins-openapi-bottomup Show documentation
The Spincast OpenAPI Bottom Up plugin
The newest version!
package org.spincast.plugins.openapi.bottomup.config;
import org.spincast.core.utils.ContentTypeDefaults;
public class SpincastOpenApiBottomUpPluginConfigDefault implements SpincastOpenApiBottomUpPluginConfig {
@Override
public String[] getDefaultConsumesContentTypes() {
return new String[]{ContentTypeDefaults.JSON.getMainVariation()};
}
@Override
public String[] getDefaultProducesContentTypes() {
return new String[]{ContentTypeDefaults.JSON.getMainVariation()};
}
@Override
public boolean isDisableAutoSpecs() {
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy