public final class RenameShapes extends ConfigurableProjectionTransformer<RenameShapes.Config>
renameShapes
updates a model by renaming shapes. When
configuring the transformer, a `renamed` property must be set as a
map with the keys as the `from` shape ids that will be renamed `to`
the shape id values. Any references to a renamed shape will also be
updated.Modifier and Type | Class and Description |
---|---|
static class |
RenameShapes.Config
renameShapes configuration settings. |
Constructor and Description |
---|
RenameShapes() |
Modifier and Type | Method and Description |
---|---|
java.lang.Class<RenameShapes.Config> |
getConfigType()
Gets the configuration class type.
|
java.lang.String |
getName()
Gets the name of the transformer.
|
protected Model |
transformWithConfig(TransformContext context,
RenameShapes.Config config)
Executes the transform using the deserialized configuration object.
|
getAdditionalProjections, getAdditionalProjectionsFunction, transform
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
createServiceFactory, createServiceFactory, createServiceFactory
public java.lang.Class<RenameShapes.Config> getConfigType()
ConfigurableProjectionTransformer
The referenced configType
class must be a public POJO with a
public, zero-arg constructor, getters, and setters. If the POJO has a
public static fromNode
method, it will be invoked and is
expected to deserialize the Node. If the POJO has a public static
builder
method, it will be invoked, setters will be called
on the builder POJO, and finally the result of calling the
build
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).
getConfigType
in class ConfigurableProjectionTransformer<RenameShapes.Config>
protected Model transformWithConfig(TransformContext context, RenameShapes.Config config)
ConfigurableProjectionTransformer
transformWithConfig
in class ConfigurableProjectionTransformer<RenameShapes.Config>
context
- Transform context.config
- Deserialized configuration object.public java.lang.String getName()
ProjectionTransformer