Class ExcludeShapesByTrait
- java.lang.Object
-
- software.amazon.smithy.build.transforms.ConfigurableProjectionTransformer<ExcludeShapesByTrait.Config>
-
- software.amazon.smithy.build.transforms.ExcludeShapesByTrait
-
- All Implemented Interfaces:
ProjectionTransformer
public final class ExcludeShapesByTrait extends ConfigurableProjectionTransformer<ExcludeShapesByTrait.Config>
Removes shapes from the model if they are marked with a specific trait.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ExcludeShapesByTrait.Config
-
Constructor Summary
Constructors Constructor Description ExcludeShapesByTrait()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<ExcludeShapesByTrait.Config>
getConfigType()
Gets the configuration class type.java.lang.String
getName()
Gets the name of the transformer.protected Model
transformWithConfig(TransformContext context, ExcludeShapesByTrait.Config config)
Executes the transform using the deserialized configuration object.-
Methods inherited from class software.amazon.smithy.build.transforms.ConfigurableProjectionTransformer
getAdditionalProjections, getAdditionalProjectionsFunction, transform
-
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from interface:ProjectionTransformer
Gets the name of the transformer.- Returns:
- Returns the name (e.g., "traits").
-
getConfigType
public java.lang.Class<ExcludeShapesByTrait.Config> getConfigType()
Description copied from class:ConfigurableProjectionTransformer
Gets the configuration class type.The referenced
configType
class must be a public POJO with a public, zero-arg constructor, getters, and setters. If the POJO has a public staticfromNode
method, it will be invoked and is expected to deserialize the Node. If the POJO has a public staticbuilder
method, it will be invoked, setters will be called on the builder POJO, and finally the result of calling thebuild
method is used as the configuration type. Finally, the deserializer will attempt to create the type and call setters on the instantiated object that correspond to property names (either named "set" + property name, or just property name).- Specified by:
getConfigType
in classConfigurableProjectionTransformer<ExcludeShapesByTrait.Config>
- Returns:
- Returns the configuration class (a POJO with setters/getters).
-
transformWithConfig
protected Model transformWithConfig(TransformContext context, ExcludeShapesByTrait.Config config)
Description copied from class:ConfigurableProjectionTransformer
Executes the transform using the deserialized configuration object.- Specified by:
transformWithConfig
in classConfigurableProjectionTransformer<ExcludeShapesByTrait.Config>
- Parameters:
context
- Transform context.config
- Deserialized configuration object.- Returns:
- Returns the transformed model.
-
-