Class RenameShapes.Config
- java.lang.Object
-
- software.amazon.smithy.build.transforms.RenameShapes.Config
-
- Enclosing class:
- RenameShapes
public static final class RenameShapes.Config extends java.lang.Object
renameShapes
configuration settings.
-
-
Constructor Summary
Constructors Constructor Description Config()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.String>
getRenamed()
Gets the map of shape ids to be renamed.void
setRenamed(java.util.Map<java.lang.String,java.lang.String> renamed)
Sets the map of `from` shape ids to the `to` shape id values that they shapes will be renamed to.
-
-
-
Method Detail
-
setRenamed
public void setRenamed(java.util.Map<java.lang.String,java.lang.String> renamed)
Sets the map of `from` shape ids to the `to` shape id values that they shapes will be renamed to.- Parameters:
renamed
- The map of shapes to rename.
-
getRenamed
public java.util.Map<java.lang.String,java.lang.String> getRenamed()
Gets the map of shape ids to be renamed.- Returns:
- The map of shapes to rename.
-
-