Class IdRefDecoratorIntegration
- java.lang.Object
-
- software.amazon.smithy.traitcodegen.integrations.idref.IdRefDecoratorIntegration
-
- All Implemented Interfaces:
SmithyIntegration<TraitCodegenSettings,TraitCodegenWriter,TraitCodegenContext>
,TraitCodegenIntegration
public class IdRefDecoratorIntegration extends java.lang.Object implements TraitCodegenIntegration
Handles the conversion of String members and String types with theIdRefTrait
trait map to theShapeId
type.This integration is run with a high priority to ensure downstream integrations see a
ShapeId
type instead of astring
.
-
-
Constructor Summary
Constructors Constructor Description IdRefDecoratorIntegration()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description SymbolProvider
decorateSymbolProvider(Model model, TraitCodegenSettings settings, SymbolProvider symbolProvider)
Updates theSymbolProvider
used when generating code.java.lang.String
name()
Gets the name of the integration.byte
priority()
Gets the priority ordering relative to the topologically ordered integration graph determined bySmithyIntegration.runBefore()
andSmithyIntegration.runAfter()
.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface software.amazon.smithy.codegen.core.SmithyIntegration
configure, customize, interceptors, preprocessModel, runAfter, runBefore
-
-
-
-
Method Detail
-
name
public java.lang.String name()
Description copied from interface:SmithyIntegration
Gets the name of the integration.This name is referred to when ordering the graph of integrations. The name defaults to the canonical class name if not overridden.
- Specified by:
name
in interfaceSmithyIntegration<TraitCodegenSettings,TraitCodegenWriter,TraitCodegenContext>
- Returns:
- Returns the integration name.
-
priority
public byte priority()
Description copied from interface:SmithyIntegration
Gets the priority ordering relative to the topologically ordered integration graph determined bySmithyIntegration.runBefore()
andSmithyIntegration.runAfter()
.Higher numbers come before lower numbers.
When ordering, implementations must not allow cycles, and no two integrations may have the same name.
- Specified by:
priority
in interfaceSmithyIntegration<TraitCodegenSettings,TraitCodegenWriter,TraitCodegenContext>
- Returns:
- Returns the priority order.
-
decorateSymbolProvider
public SymbolProvider decorateSymbolProvider(Model model, TraitCodegenSettings settings, SymbolProvider symbolProvider)
Description copied from interface:SmithyIntegration
Updates theSymbolProvider
used when generating code.This can be used to customize the names of shapes, the package that code is generated into, add dependencies, add imports, etc.
By default, this method will return the given
symbolProvider
as-is.This integration method should be called only after
SmithyIntegration.preprocessModel(software.amazon.smithy.model.Model, S)
.- Specified by:
decorateSymbolProvider
in interfaceSmithyIntegration<TraitCodegenSettings,TraitCodegenWriter,TraitCodegenContext>
- Parameters:
model
- Model being generated.settings
- Settings used to generate.symbolProvider
- The originalSymbolProvider
.- Returns:
- The decorated
SymbolProvider
.
-
-