Package org.springdoc.core
Class GroupedOpenApi
- java.lang.Object
-
- org.springdoc.core.GroupedOpenApi
-
public class GroupedOpenApi extends Object
The type Grouped open api.- Author:
- bnasslahsen
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
GroupedOpenApi.Builder
The type Builder.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static GroupedOpenApi.Builder
builder()
Builder builder.List<String>
getConsumesToMatch()
Gets consumes to match.String
getGroup()
Gets group.List<String>
getHeadersToMatch()
Gets headers to match.List<OpenApiCustomiser>
getOpenApiCustomisers()
Gets open api customisers.List<OpenApiMethodFilter>
getOpenApiMethodFilters()
Gets open api method filters.List<OperationCustomizer>
getOperationCustomizers()
Gets operation customizers.List<String>
getPackagesToExclude()
Gets packages to exclude.List<String>
getPackagesToScan()
Gets packages to scan.List<String>
getPathsToExclude()
Gets paths to exclude.List<String>
getPathsToMatch()
Gets paths to match.List<String>
getProducesToMatch()
Gets produces to match.
-
-
-
Method Detail
-
builder
public static GroupedOpenApi.Builder builder()
Builder builder.- Returns:
- the builder
-
getProducesToMatch
public List<String> getProducesToMatch()
Gets produces to match.- Returns:
- the produces to match
-
getHeadersToMatch
public List<String> getHeadersToMatch()
Gets headers to match.- Returns:
- the headers to match
-
getConsumesToMatch
public List<String> getConsumesToMatch()
Gets consumes to match.- Returns:
- the consumes to match
-
getGroup
public String getGroup()
Gets group.- Returns:
- the group
-
getPathsToMatch
public List<String> getPathsToMatch()
Gets paths to match.- Returns:
- the paths to match
-
getPackagesToScan
public List<String> getPackagesToScan()
Gets packages to scan.- Returns:
- the packages to scan
-
getPackagesToExclude
public List<String> getPackagesToExclude()
Gets packages to exclude.- Returns:
- the packages to exclude
-
getPathsToExclude
public List<String> getPathsToExclude()
Gets paths to exclude.- Returns:
- the paths to exclude
-
getOpenApiCustomisers
public List<OpenApiCustomiser> getOpenApiCustomisers()
Gets open api customisers.- Returns:
- the open api customisers
-
getOperationCustomizers
public List<OperationCustomizer> getOperationCustomizers()
Gets operation customizers.- Returns:
- the operation customizers
-
getOpenApiMethodFilters
public List<OpenApiMethodFilter> getOpenApiMethodFilters()
Gets open api method filters.- Returns:
- the open api method filters
-
-