Interface BytecodeInjectionMojo.InjectionTarget
-
- All Known Implementing Classes:
BytecodeInjectionMojo.BaseInjectionTarget
,BytecodeInjectionMojo.ConstantInjectionTarget
,BytecodeInjectionMojo.MethodBodyReturnReplacementTarget
- Enclosing class:
- BytecodeInjectionMojo
public static interface BytecodeInjectionMojo.InjectionTarget
Defines a strategy for applying injections.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
inject(java.lang.String value)
Inject the given value per this target's strategy.
-
-
-
Method Detail
-
inject
void inject(java.lang.String value) throws org.apache.maven.plugin.MojoExecutionException
Inject the given value per this target's strategy.- Parameters:
value
- The value to inject.- Throws:
org.apache.maven.plugin.MojoExecutionException
- Indicates a problem performing the injection.
-
-