
io.github.swagger2markup.config.builder.Schema2MarkupConfigBuilder Maven / Gradle / Ivy
The newest version!
/*
* Copyright 2017 Robert Winkler
* Modified December 12 2016 by Cas Eliëns
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.github.swagger2markup.config.builder;
import com.google.common.collect.Ordering;
import io.github.swagger2markup.*;
import io.github.swagger2markup.config.*;
import io.github.swagger2markup.model.Parameter;
import io.github.swagger2markup.model.PathOperation;
import org.apache.commons.configuration2.AbstractConfiguration;
import org.apache.commons.configuration2.CompositeConfiguration;
import org.apache.commons.configuration2.Configuration;
import org.apache.commons.configuration2.SystemConfiguration;
import org.apache.commons.configuration2.builder.fluent.Configurations;
import org.apache.commons.configuration2.convert.DefaultListDelimiterHandler;
import org.apache.commons.configuration2.ex.ConfigurationException;
import org.apache.commons.lang3.StringUtils;
import org.apache.commons.lang3.Validate;
import java.util.Comparator;
import java.util.List;
import java.util.Optional;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;
import static io.github.swagger2markup.Schema2MarkupProperties.*;
public abstract class Schema2MarkupConfigBuilder {
public static final Ordering OPERATION_METHOD_NATURAL_ORDERING = Ordering
.explicit("POST", "GET", "PUT",
"DELETE", "PATCH", "HEAD", "OPTIONS")
.onResultOf(PathOperation::getHttpMethod);
public static final Ordering OPERATION_PATH_NATURAL_ORDERING = Ordering
.natural()
.onResultOf(PathOperation::getPath);
public static final Ordering PARAMETER_IN_NATURAL_ORDERING = Ordering
.explicit("header", "path", "query", "formData", "body")
.onResultOf(Parameter::getIn);
public static final Ordering PARAMETER_NAME_NATURAL_ORDERING = Ordering
.natural()
.onResultOf(Parameter::getName);
static final String PROPERTIES_DEFAULT = "io/github/swagger2markup/config/default.properties";
protected C config;
//reference to self as the subclass type
private final T self;
public Schema2MarkupConfigBuilder(final Class selfClass,
C config,
Schema2MarkupProperties schema2MarkupProperties,
Configuration configuration) {
this.self = selfClass.cast(this);
this.config = config;
config.listDelimiterEnabled = schema2MarkupProperties.getBoolean(LIST_DELIMITER_ENABLED, false);
config.listDelimiter = schema2MarkupProperties.getString(LIST_DELIMITER, ",").charAt(0);
if (config.listDelimiterEnabled && configuration instanceof AbstractConfiguration) {
((AbstractConfiguration) configuration).setListDelimiterHandler(new DefaultListDelimiterHandler(config.listDelimiter));
}
config.requestExamplesFormat = schema2MarkupProperties.getRequiredString(REQUEST_EXAMPLES_FORMAT);
config.requestExamplesSourceFormat = schema2MarkupProperties.getRequiredString(REQUEST_EXAMPLES_SOURCE_FORMAT);
config.requestExamplesHost = schema2MarkupProperties.getRequiredString(REQUEST_EXAMPLES_HOST);
config.requestExamplesSchema = schema2MarkupProperties.getRequiredString(REQUEST_EXAMPLES_SCHEMA);
config.requestExamplesHideBasePath = schema2MarkupProperties.getRequiredBoolean(REQUEST_EXAMPLES_HIDE_BASE_PATH);
config.requestExamplesQueryArrayStyle = schema2MarkupProperties.getRequiredString(REQUEST_EXAMPLES_QUERY_ARRAY_STYLE);
config.requestExamplesIncludeAllQueryParams = schema2MarkupProperties.getRequiredBoolean(REQUEST_EXAMPLES_INCLUDE_ALL_QUERY_PARAMS);
config.markupLanguage = schema2MarkupProperties.getRequiredMarkupLanguage(MARKUP_LANGUAGE);
config.schemaMarkupLanguage = schema2MarkupProperties.getRequiredMarkupLanguage(SWAGGER_MARKUP_LANGUAGE);
config.generatedExamplesEnabled = schema2MarkupProperties.getRequiredBoolean(GENERATED_EXAMPLES_ENABLED);
config.hostnameEnabled = schema2MarkupProperties.getRequiredBoolean(HOSTNAME_ENABLED);
config.basePathPrefixEnabled = schema2MarkupProperties.getRequiredBoolean(BASE_PATH_PREFIX_ENABLED);
config.separatedDefinitionsEnabled = schema2MarkupProperties.getRequiredBoolean(SEPARATED_DEFINITIONS_ENABLED);
config.separatedOperationsEnabled = schema2MarkupProperties.getRequiredBoolean(SEPARATED_OPERATIONS_ENABLED);
config.pathsGroupedBy = schema2MarkupProperties.getGroupBy(PATHS_GROUPED_BY);
config.language = schema2MarkupProperties.getLanguage(OUTPUT_LANGUAGE);
config.inlineSchemaEnabled = schema2MarkupProperties.getRequiredBoolean(INLINE_SCHEMA_ENABLED);
config.interDocumentCrossReferencesEnabled = schema2MarkupProperties.getRequiredBoolean(INTER_DOCUMENT_CROSS_REFERENCES_ENABLED);
config.interDocumentCrossReferencesPrefix = schema2MarkupProperties.getString(INTER_DOCUMENT_CROSS_REFERENCES_PREFIX, null);
config.flatBodyEnabled = schema2MarkupProperties.getRequiredBoolean(FLAT_BODY_ENABLED);
config.pathSecuritySectionEnabled = schema2MarkupProperties.getRequiredBoolean(PATH_SECURITY_SECTION_ENABLED);
config.anchorPrefix = schema2MarkupProperties.getString(ANCHOR_PREFIX, null);
config.overviewDocument = schema2MarkupProperties.getRequiredString(OVERVIEW_DOCUMENT);
config.pathsDocument = schema2MarkupProperties.getRequiredString(PATHS_DOCUMENT);
config.definitionsDocument = schema2MarkupProperties.getRequiredString(DEFINITIONS_DOCUMENT);
config.securityDocument = schema2MarkupProperties.getRequiredString(SECURITY_DOCUMENT);
config.separatedOperationsFolder = schema2MarkupProperties.getRequiredString(SEPARATED_OPERATIONS_FOLDER);
config.separatedDefinitionsFolder = schema2MarkupProperties.getRequiredString(SEPARATED_DEFINITIONS_FOLDER);
config.tagOrderBy = schema2MarkupProperties.getOrderBy(TAG_ORDER_BY);
config.operationOrderBy = schema2MarkupProperties.getOrderBy(OPERATION_ORDER_BY);
config.definitionOrderBy = schema2MarkupProperties.getOrderBy(DEFINITION_ORDER_BY);
config.parameterOrderBy = schema2MarkupProperties.getOrderBy(PARAMETER_ORDER_BY);
config.propertyOrderBy = schema2MarkupProperties.getOrderBy(PROPERTY_ORDER_BY);
config.responseOrderBy = schema2MarkupProperties.getOrderBy(RESPONSE_ORDER_BY);
Optional lineSeparator = schema2MarkupProperties.getString(LINE_SEPARATOR);
if (lineSeparator.isPresent() && StringUtils.isNoneBlank(lineSeparator.get())) {
config.lineSeparator = LineSeparator.valueOf(lineSeparator.get());
}
config.pageBreakLocations = schema2MarkupProperties.getPageBreakLocations(PAGE_BREAK_LOCATIONS);
Optional headerPattern = schema2MarkupProperties.getHeaderPattern(HEADER_REGEX);
config.headerPattern = headerPattern.orElse(null);
Configuration swagger2markupConfiguration = schema2MarkupProperties.getConfiguration().subset(PROPERTIES_PREFIX);
Configuration extensionsConfiguration = swagger2markupConfiguration.subset(EXTENSION_PREFIX);
config.extensionsProperties = new Schema2MarkupProperties(extensionsConfiguration);
config.asciidocPegdownTimeoutMillis = schema2MarkupProperties.getRequiredInt(ASCIIDOC_PEGDOWN_TIMEOUT);
}
/**
* Loads the default properties from the classpath.
*
* @return the default properties
*/
public static Configuration getDefaultConfiguration() {
Configurations configs = new Configurations();
try {
return configs.properties(PROPERTIES_DEFAULT);
} catch (ConfigurationException e) {
throw new RuntimeException(String.format("Can't load default properties '%s'", PROPERTIES_DEFAULT), e);
}
}
protected void buildNaturalOrdering() {
if (config.tagOrderBy == OrderBy.NATURAL)
config.tagOrdering = Ordering.natural();
if (config.operationOrderBy == OrderBy.NATURAL)
config.operationOrdering = OPERATION_PATH_NATURAL_ORDERING.compound(OPERATION_METHOD_NATURAL_ORDERING);
if (config.definitionOrderBy == OrderBy.NATURAL)
config.definitionOrdering = Ordering.natural();
if (config.parameterOrderBy == OrderBy.NATURAL)
config.parameterOrdering = PARAMETER_IN_NATURAL_ORDERING.compound(PARAMETER_NAME_NATURAL_ORDERING);
if (config.propertyOrderBy == OrderBy.NATURAL)
config.propertyOrdering = Ordering.natural();
if (config.responseOrderBy == OrderBy.NATURAL)
config.responseOrdering = Ordering.natural();
}
/**
* Builds the OpenApi2MarkupConfig.
*
* @return the OpenApi2MarkupConfig
*/
public abstract C build();
/**
* Specifies the markup language which should be used to generate the files.
*
* @param markupLanguage the markup language which is used to generate the files
* @return this builder
*/
public T withMarkupLanguage(MarkupLanguage markupLanguage) {
Validate.notNull(markupLanguage, "%s must not be null", "outputLanguage");
config.markupLanguage = markupLanguage;
return self;
}
/**
* Specifies the markup language used in Swagger descriptions.
*
* @param markupLanguage the markup language used in Swagger descriptions
* @return this builder
*/
public T withSwaggerMarkupLanguage(MarkupLanguage markupLanguage) {
Validate.notNull(markupLanguage, "%s must not be null", "outputLanguage");
config.schemaMarkupLanguage = markupLanguage;
return self;
}
/**
* Include generated examples into the documents.
*
* @return this builder
*/
public T withGeneratedExamples() {
config.generatedExamplesEnabled = true;
return self;
}
/**
* In addition to the Definitions file, also create separate definition files for each model definition.
*
* @return this builder
*/
public T withSeparatedDefinitions() {
config.separatedDefinitionsEnabled = true;
return self;
}
/**
* In addition to the Paths file, also create separate operation files for each operation.
*
* @return this builder
*/
public T withSeparatedOperations() {
config.separatedOperationsEnabled = true;
return self;
}
/**
* Allows properties to contain a list of elements delimited by a specified character.
*
* @return this builder
*/
public T withListDelimiter() {
config.listDelimiterEnabled = true;
return self;
}
/**
* Specifies the list delimiter which should be used.
*
* @param delimiter the delimiter
* @return this builder
*/
public T withListDelimiter(Character delimiter) {
Validate.notNull(delimiter, "%s must not be null", "delimiter");
config.listDelimiter = delimiter;
config.listDelimiterEnabled = true;
return self;
}
/**
* Specifies if the paths should be grouped by tags or stay as-is.
*
* @param pathsGroupedBy the GroupBy enum
* @return this builder
*/
public T withPathsGroupedBy(GroupBy pathsGroupedBy) {
Validate.notNull(pathsGroupedBy, "%s must not be null", "pathsGroupedBy");
config.pathsGroupedBy = pathsGroupedBy;
return self;
}
/**
* Specifies the regex pattern to use for grouping paths.
*
* @param headerRegex regex pattern string containing one capture group
* @return this builder
* @throws PatternSyntaxException when pattern cannot be compiled
*/
public T withHeaderRegex(String headerRegex) {
Validate.notNull(headerRegex, "%s must not be null", headerRegex);
config.headerPattern = Pattern.compile(headerRegex);
return self;
}
/**
* Specifies labels language of output files.
*
* @param language the enum
* @return this builder
*/
public T withOutputLanguage(Language language) {
Validate.notNull(language, "%s must not be null", "language");
config.language = language;
return self;
}
/**
* Disable inline schema support.
*
* @return this builder
*/
public T withoutInlineSchema() {
config.inlineSchemaEnabled = false;
return self;
}
/**
* Specifies tag ordering.
* By default tag ordering == {@link OrderBy#NATURAL}.
* Use {@link #withTagOrdering(Comparator)} to set a custom ordering.
*
* @param orderBy tag ordering
* @return this builder
*/
public T withTagOrdering(OrderBy orderBy) {
Validate.notNull(orderBy, "%s must not be null", "orderBy");
Validate.isTrue(orderBy != OrderBy.CUSTOM, "You must provide a custom comparator if orderBy == OrderBy.CUSTOM");
config.tagOrderBy = orderBy;
return self;
}
/**
* Specifies a custom comparator function to order tags.
*
* @param tagOrdering tag ordering
* @return this builder
*/
public T withTagOrdering(Comparator tagOrdering) {
Validate.notNull(tagOrdering, "%s must not be null", "tagOrdering");
config.tagOrderBy = OrderBy.CUSTOM;
config.tagOrdering = tagOrdering;
return self;
}
/**
* Specifies operation ordering.
* By default operation ordering == {@link OrderBy#AS_IS}.
* Use {@link #withOperationOrdering(Comparator)} to set a custom ordering.
*
* @param orderBy operation ordering
* @return this builder
*/
public T withOperationOrdering(OrderBy orderBy) {
Validate.notNull(orderBy, "%s must not be null", "orderBy");
Validate.isTrue(orderBy != OrderBy.CUSTOM, "You must provide a custom comparator if orderBy == OrderBy.CUSTOM");
config.operationOrderBy = orderBy;
return self;
}
/**
* Specifies a custom comparator function to order operations.
*
* @param operationOrdering operation ordering
* @return this builder
*/
public T withOperationOrdering(Comparator operationOrdering) {
Validate.notNull(operationOrdering, "%s must not be null", "operationOrdering");
config.operationOrderBy = OrderBy.CUSTOM;
config.operationOrdering = operationOrdering;
return self;
}
/**
* Specifies definition ordering.
* By default definition ordering == {@link OrderBy#NATURAL}.
* Use {@link #withDefinitionOrdering(Comparator)} to set a custom ordering.
*
* @param orderBy definition ordering
* @return this builder
*/
public T withDefinitionOrdering(OrderBy orderBy) {
Validate.notNull(orderBy, "%s must not be null", "orderBy");
Validate.isTrue(orderBy != OrderBy.CUSTOM, "You must provide a custom comparator if orderBy == OrderBy.CUSTOM");
config.definitionOrderBy = orderBy;
return self;
}
/**
* Specifies a custom comparator function to order definitions.
*
* @param definitionOrdering definition ordering
* @return this builder
*/
public T withDefinitionOrdering(Comparator definitionOrdering) {
Validate.notNull(definitionOrdering, "%s must not be null", "definitionOrdering");
config.definitionOrderBy = OrderBy.CUSTOM;
config.definitionOrdering = definitionOrdering;
return self;
}
/**
* Specifies parameter ordering.
* By default parameter ordering == {@link OrderBy#NATURAL}.
* Use {@link #withParameterOrdering(Comparator)} to set a custom ordering.
*
* @param orderBy parameter ordering
* @return this builder
*/
public T withParameterOrdering(OrderBy orderBy) {
Validate.notNull(orderBy, "%s must not be null", "orderBy");
Validate.isTrue(orderBy != OrderBy.CUSTOM, "You must provide a custom comparator if orderBy == OrderBy.CUSTOM");
config.parameterOrderBy = orderBy;
return self;
}
/**
* Specifies a custom comparator function to order parameters.
*
* @param parameterOrdering parameter ordering
* @return this builder
*/
public T withParameterOrdering(Comparator parameterOrdering) {
Validate.notNull(parameterOrdering, "%s must not be null", "parameterOrdering");
config.parameterOrderBy = OrderBy.CUSTOM;
config.parameterOrdering = parameterOrdering;
return self;
}
/**
* Specifies property ordering.
* By default property ordering == {@link OrderBy#NATURAL}.
* Use {@link #withPropertyOrdering(Comparator)} to set a custom ordering.
*
* @param orderBy property ordering
* @return this builder
*/
public T withPropertyOrdering(OrderBy orderBy) {
Validate.notNull(orderBy, "%s must not be null", "orderBy");
Validate.isTrue(orderBy != OrderBy.CUSTOM, "You must provide a custom comparator if orderBy == OrderBy.CUSTOM");
config.propertyOrderBy = orderBy;
return self;
}
/**
* Specifies a custom comparator function to order properties.
*
* @param propertyOrdering property ordering
* @return this builder
*/
public T withPropertyOrdering(Comparator propertyOrdering) {
Validate.notNull(propertyOrdering, "%s must not be null", "propertyOrdering");
config.propertyOrderBy = OrderBy.CUSTOM;
config.propertyOrdering = propertyOrdering;
return self;
}
/**
* Specifies response ordering.
* By default response ordering == {@link OrderBy#NATURAL}.
* Use {@link #withResponseOrdering(Comparator)} to set a custom ordering.
*
* @param orderBy response ordering
* @return this builder
*/
public T withResponseOrdering(OrderBy orderBy) {
Validate.notNull(orderBy, "%s must not be null", "orderBy");
Validate.isTrue(orderBy != OrderBy.CUSTOM, "You must provide a custom comparator if orderBy == OrderBy.CUSTOM");
config.responseOrderBy = orderBy;
return self;
}
/**
* Specifies a custom comparator function to order responses.
*
* @param responseOrdering response ordering
* @return this builder
*/
public T withResponseOrdering(Comparator responseOrdering) {
Validate.notNull(responseOrdering, "%s must not be null", "responseOrdering");
config.responseOrderBy = OrderBy.CUSTOM;
config.responseOrdering = responseOrdering;
return self;
}
/**
* Enable use of inter-document cross-references when needed.
*
* @param prefix Prefix to document in all inter-document cross-references.
* @return this builder
*/
public T withInterDocumentCrossReferences(String prefix) {
Validate.notNull(prefix, "%s must not be null", "prefix");
config.interDocumentCrossReferencesEnabled = true;
config.interDocumentCrossReferencesPrefix = prefix;
return self;
}
/**
* Enable use of inter-document cross-references when needed.
*
* @return this builder
*/
public T withInterDocumentCrossReferences() {
config.interDocumentCrossReferencesEnabled = true;
return self;
}
/**
* Optionally isolate the body parameter, if any, from other parameters.
*
* @return this builder
*/
public T withFlatBody() {
config.flatBodyEnabled = true;
return self;
}
/**
* Optionally disable the security section for path sections
*
* @return this builder
*/
public T withoutPathSecuritySection() {
config.pathSecuritySectionEnabled = false;
return self;
}
/**
* Prepend the base path to all paths.
*
* @return this builder
*/
public T withBasePathPrefix() {
config.basePathPrefixEnabled = true;
return self;
}
/**
* Optionally prefix all anchors for uniqueness.
*
* @param anchorPrefix anchor prefix.
* @return this builder
*/
public T withAnchorPrefix(String anchorPrefix) {
Validate.notNull(anchorPrefix, "%s must not be null", "anchorPrefix");
config.anchorPrefix = anchorPrefix;
return self;
}
/**
* Set the page break locations
*
* @param locations List of locations to create new pages
* @return this builder
*/
public T withPageBreaks(List locations) {
Validate.notNull(locations, "%s must not be null", "locations");
config.pageBreakLocations = locations;
return self;
}
/**
* Specifies the line separator which should be used.
*
* @param lineSeparator the lineSeparator
* @return this builder
*/
public T withLineSeparator(LineSeparator lineSeparator) {
Validate.notNull(lineSeparator, "%s must no be null", "lineSeparator");
config.lineSeparator = lineSeparator;
return self;
}
/**
* Specifies the request examples format to use.
*
* @param requestExamplesFormat `basic`, `curl` or `invoke-webrequest`
* @return this builder
*/
public T withRequestExamplesFormat(String requestExamplesFormat) {
Validate.notNull(requestExamplesFormat, "%s must not be null", requestExamplesFormat);
config.requestExamplesFormat = requestExamplesFormat;
return self;
}
/**
* format name which should be used to highlight source block with request example string
*
* @param requestExamplesSourceFormat any string or `default`
* @return this builder
*/
public T withRequestExamplesSourceFormat(String requestExamplesSourceFormat) {
Validate.notNull(requestExamplesSourceFormat, "%s must not be null", requestExamplesSourceFormat);
config.requestExamplesSourceFormat = requestExamplesSourceFormat;
return self;
}
/**
* Should we hide, inherit or override hostname (e.g. with google.com) from yml file
*
* @param requestExamplesHost `hide`, `inherit` or string with hostname to be used in request example
* @return this builder
*/
public T withRequestExamplesHost(String requestExamplesHost) {
Validate.notNull(requestExamplesHost, "%s must not ber null", requestExamplesHost);
config.requestExamplesHost = requestExamplesHost;
return self;
}
/**
* Should we hide, inherit or override schema (http, https name it) from yml file
*
* @param requestExamplesSchema `hide`, `inherit` or string with schema name to be used in request example
* @return this builder
*/
public T withRequestExamplesSchema(String requestExamplesSchema) {
Validate.notNull(requestExamplesSchema, "%s must not be null", requestExamplesSchema);
config.requestExamplesSchema = requestExamplesSchema;
return self;
}
/**
* Should we hide or show base path in example request endpoint address
*
* @param requestExamplesHideBasePath true or false
* @return this builder
* @throws PatternSyntaxException when pattern cannot be compiled
*/
public T withRequestExamplesHideBasePath(boolean requestExamplesHideBasePath) {
config.requestExamplesHideBasePath = requestExamplesHideBasePath;
return self;
}
/**
* Should we output optional query params in source block with request example string
*
* @param requestExamplesIncludeAllQueryParams false if example request should contain only required params
* @return this builder
*/
public T withRequestExamplesIncludeAllQueryParams(boolean requestExamplesIncludeAllQueryParams) {
config.requestExamplesIncludeAllQueryParams = requestExamplesIncludeAllQueryParams;
return self;
}
/**
* How we should output array query params
*
* @param requestExamplesQueryArrayStyle `single` — single time (similar to basic types), `commaSeparated` — single time with multiple comma
* separated values, `multiple` times with same param name and different values, `multiple[]` times with array
* brackets as param name suffix.
* @return this builder
*/
public T withRequestExamplesQueryArrayStyle(String requestExamplesQueryArrayStyle) {
Validate.notNull(requestExamplesQueryArrayStyle, "%s must not be null", requestExamplesQueryArrayStyle);
config.requestExamplesQueryArrayStyle = requestExamplesQueryArrayStyle;
return self;
}
protected static CompositeConfiguration getCompositeConfiguration(Configuration configuration) {
CompositeConfiguration compositeConfiguration = new CompositeConfiguration();
compositeConfiguration.addConfiguration(new SystemConfiguration());
compositeConfiguration.addConfiguration(configuration);
compositeConfiguration.addConfiguration(getDefaultConfiguration());
return compositeConfiguration;
}
/**
* Default implementation of {@link Schema2MarkupConfig}
*/
public static class DefaultSchema2MarkupConfig implements Schema2MarkupConfig {
MarkupLanguage markupLanguage;
MarkupLanguage schemaMarkupLanguage;
boolean generatedExamplesEnabled;
String requestExamplesFormat;
String requestExamplesSourceFormat;
String requestExamplesHost;
String requestExamplesSchema;
boolean requestExamplesHideBasePath;
boolean requestExamplesIncludeAllQueryParams;
String requestExamplesQueryArrayStyle;
boolean hostnameEnabled;
boolean basePathPrefixEnabled;
boolean separatedDefinitionsEnabled;
boolean separatedOperationsEnabled;
GroupBy pathsGroupedBy;
Language language;
boolean inlineSchemaEnabled;
OrderBy tagOrderBy;
Comparator tagOrdering;
OrderBy operationOrderBy;
Comparator operationOrdering;
OrderBy definitionOrderBy;
Comparator definitionOrdering;
OrderBy parameterOrderBy;
Comparator parameterOrdering;
OrderBy propertyOrderBy;
Comparator propertyOrdering;
OrderBy responseOrderBy;
Comparator responseOrdering;
boolean interDocumentCrossReferencesEnabled;
String interDocumentCrossReferencesPrefix;
boolean flatBodyEnabled;
boolean pathSecuritySectionEnabled;
String anchorPrefix;
LineSeparator lineSeparator;
String overviewDocument;
String pathsDocument;
String definitionsDocument;
String securityDocument;
String separatedOperationsFolder;
String separatedDefinitionsFolder;
Character listDelimiter;
boolean listDelimiterEnabled;
int asciidocPegdownTimeoutMillis;
List pageBreakLocations;
Pattern headerPattern;
Schema2MarkupProperties extensionsProperties;
@Override
public MarkupLanguage getMarkupLanguage() {
return markupLanguage;
}
@Override
public MarkupLanguage getSchemaMarkupLanguage() {
return schemaMarkupLanguage;
}
@Override
public boolean isGeneratedExamplesEnabled() {
return generatedExamplesEnabled;
}
@Override
public boolean isSeparatedDefinitionsEnabled() {
return separatedDefinitionsEnabled;
}
@Override
public boolean isSeparatedOperationsEnabled() {
return separatedOperationsEnabled;
}
@Override
public GroupBy getPathsGroupedBy() {
return pathsGroupedBy;
}
@Override
public Language getLanguage() {
return language;
}
@Override
public boolean isInlineSchemaEnabled() {
return inlineSchemaEnabled;
}
@Override
public OrderBy getTagOrderBy() {
return tagOrderBy;
}
@Override
public Pattern getHeaderPattern() {
return headerPattern;
}
@Override
public Comparator getTagOrdering() {
return tagOrdering;
}
@Override
public OrderBy getOperationOrderBy() {
return operationOrderBy;
}
@Override
public Comparator getOperationOrdering() {
return operationOrdering;
}
@Override
public OrderBy getDefinitionOrderBy() {
return definitionOrderBy;
}
@Override
public Comparator getDefinitionOrdering() {
return definitionOrdering;
}
@Override
public OrderBy getParameterOrderBy() {
return parameterOrderBy;
}
@Override
public Comparator getParameterOrdering() {
return parameterOrdering;
}
@Override
public OrderBy getPropertyOrderBy() {
return propertyOrderBy;
}
@Override
public Comparator getPropertyOrdering() {
return propertyOrdering;
}
@Override
public OrderBy getResponseOrderBy() {
return responseOrderBy;
}
@Override
public Comparator getResponseOrdering() {
return responseOrdering;
}
@Override
public boolean isInterDocumentCrossReferencesEnabled() {
return interDocumentCrossReferencesEnabled;
}
@Override
public String getInterDocumentCrossReferencesPrefix() {
return interDocumentCrossReferencesPrefix;
}
@Override
public boolean isFlatBodyEnabled() {
return flatBodyEnabled;
}
@Override
public boolean isPathSecuritySectionEnabled() {
return pathSecuritySectionEnabled;
}
@Override
public String getAnchorPrefix() {
return anchorPrefix;
}
@Override
public String getOverviewDocument() {
return overviewDocument;
}
@Override
public String getPathsDocument() {
return pathsDocument;
}
@Override
public String getDefinitionsDocument() {
return definitionsDocument;
}
@Override
public String getSecurityDocument() {
return securityDocument;
}
@Override
public String getSeparatedOperationsFolder() {
return separatedOperationsFolder;
}
@Override
public String getSeparatedDefinitionsFolder() {
return separatedDefinitionsFolder;
}
@Override
public LineSeparator getLineSeparator() {
return lineSeparator;
}
@Override
public Character getListDelimiter() {
return listDelimiter;
}
@Override
public boolean isListDelimiterEnabled() {
return listDelimiterEnabled;
}
@Override
public Schema2MarkupProperties getExtensionsProperties() {
return extensionsProperties;
}
@Override
public boolean isHostnameEnabled() {
return hostnameEnabled;
}
@Override
public boolean isBasePathPrefixEnabled() {
return basePathPrefixEnabled;
}
@Override
public List getPageBreakLocations() {
return pageBreakLocations;
}
@Override
public int getAsciidocPegdownTimeoutMillis() {
return asciidocPegdownTimeoutMillis;
}
@Override
public String getRequestExamplesFormat() {
return requestExamplesFormat;
}
@Override
public String getRequestExamplesSourceFormat() {
return requestExamplesSourceFormat;
}
@Override
public boolean getRequestExamplesIncludeAllQueryParams() {
return requestExamplesIncludeAllQueryParams;
}
@Override
public String getRequestExamplesQueryArrayStyle() {
return requestExamplesQueryArrayStyle;
}
@Override
public String getRequestExamplesHost() {
return requestExamplesHost;
}
@Override
public String getRequestExamplesSchema() {
return requestExamplesSchema;
}
@Override
public boolean getRequestExamplesHideBasePath() {
return requestExamplesHideBasePath;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy