Interface ApiFormat
-
- All Known Implementing Classes:
OpenApiFormat
public interface ApiFormat
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceApiFormat.FieldFilter
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidconfigure(Map<String,Object> config)ApiFormatDescriptorgetDescriptor()default ApiFormat.FieldFiltergetFieldFilter()Returns a filter to be applied to the fields of the schema.StringgetSpec(org.eclipse.microprofile.openapi.models.media.Schema connectorSchema)
-
-
-
Method Detail
-
getDescriptor
ApiFormatDescriptor getDescriptor()
-
getSpec
String getSpec(org.eclipse.microprofile.openapi.models.media.Schema connectorSchema)
-
getFieldFilter
default ApiFormat.FieldFilter getFieldFilter()
Returns a filter to be applied to the fields of the schema. Only matching fields will be part of the serialized API spec. Defaults to including all the fields of the schema.
-
-