Class RunPlugin
java.lang.Object
software.amazon.smithy.build.plugins.RunPlugin
- All Implemented Interfaces:
- SmithyBuildPlugin
Runs a process-based plugin.
- 
Nested Class SummaryNested Classes
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionvoidexecute(PluginContext context) Executes the plugin, creating any number of artifacts.getName()Gets the name of the plugin.booleanPlugins can choose whether or not to create artifacts based on whether or not the projection encountered error or unsuppressed danger events.Methods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface software.amazon.smithy.build.SmithyBuildPluginisSerial
- 
Constructor Details- 
RunPluginpublic RunPlugin()
 
- 
- 
Method Details- 
getNameDescription copied from interface:SmithyBuildPluginGets the name of the plugin.- Specified by:
- getNamein interface- SmithyBuildPlugin
- Returns:
- Returns the name (e.g., "MyPlugin").
 
- 
requiresValidModelpublic boolean requiresValidModel()Description copied from interface:SmithyBuildPluginPlugins can choose whether or not to create artifacts based on whether or not the projection encountered error or unsuppressed danger events.By default plugins require that there are no errors or danger events for a given projected model. - Specified by:
- requiresValidModelin interface- SmithyBuildPlugin
- Returns:
- Returns true if the plugin should only be called if there are no error or unsuppressed danger violations for the projection.
 
- 
executeDescription copied from interface:SmithyBuildPluginExecutes the plugin, creating any number of artifacts.- Specified by:
- executein interface- SmithyBuildPlugin
- Parameters:
- context- Plugin context for build execution.
 
 
-