Class UnsupportedTraits
- java.lang.Object
- 
- software.amazon.smithy.openapi.fromsmithy.mappers.UnsupportedTraits
 
- 
- All Implemented Interfaces:
- OpenApiMapper
 
 public final class UnsupportedTraits extends java.lang.Object implements OpenApiMapper Logs each instance of traits and features that are known to not work in OpenAPI.
- 
- 
Constructor SummaryConstructors Constructor Description UnsupportedTraits()
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidbefore(Context<? extends Trait> context, OpenApi.Builder builder)Updates an OpenApi.Builder before converting the model.bytegetOrder()Gets the sort order of the plugin from -128 to 127.- 
Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 - 
Methods inherited from interface software.amazon.smithy.openapi.fromsmithy.OpenApiMapperafter, postProcessOperation, updateDefaultSettings, updateNode, updateOperation, updateParameter, updatePathItem, updateRequestBody, updateResponse, updateSecurity, updateSecurityScheme
 
- 
 
- 
- 
- 
Method Detail- 
getOrderpublic byte getOrder() Description copied from interface:OpenApiMapperGets the sort order of the plugin from -128 to 127.Plugins are applied according to this sort order. Lower values are executed before higher values (for example, -128 comes before 0, comes before 127). Plugins default to 0, which is the middle point between the minimum and maximum order values. - Specified by:
- getOrderin interface- OpenApiMapper
- Returns:
- Returns the sort order, defaulting to 0.
 
 - 
beforepublic void before(Context<? extends Trait> context, OpenApi.Builder builder) Description copied from interface:OpenApiMapperUpdates an OpenApi.Builder before converting the model.- Specified by:
- beforein interface- OpenApiMapper
- Parameters:
- context- Conversion context.
- builder- OpenAPI builder to modify.
 
 
- 
 
-