Convert annotated abstract method to field
Recipe ID
org.openrewrite.tapestry.ConvertAnnotatedMethodToFieldArtifact
io.moderne.recipe:rewrite-tapestryConverts abstract getter methods annotated with sourceAnnotation to private fields annotated with targetAnnotation. Also removes corresponding abstract setter methods.
Usage
You’ll need the Moderne CLI configured before running the command below.
mod run . --recipe org.openrewrite.tapestry.ConvertAnnotatedMethodToField --recipe-option "sourceAnnotation=org.apache.tapestry.annotations.InjectObject" --recipe-option "targetAnnotation=org.apache.tapestry5.ioc.annotations.Inject"If the recipe isn’t available locally, install it with:
mod config recipes jar install io.moderne.recipe:rewrite-tapestry:0.4.4Options
| Name | Type | Description |
|---|---|---|
sourceAnnotationrequired | String | The fully qualified name of the annotation to find on abstract getter methods. e.g. org.apache.tapestry.annotations.InjectObject |
targetAnnotationrequired | String | The fully qualified name of the annotation to add to the generated field. e.g. org.apache.tapestry5.ioc.annotations.Inject |
preserveAnnotationArguments | Boolean | When true, copies the source annotation's arguments to the target annotation. Use this when the annotation arguments carry semantic meaning in the target framework (e.g., @Persist("session"), @Parameter(required=true)). e.g. true |
Data tables
Structured output this recipe can produce.
- Source files that had resultsSource files that were modified by the recipe run.
org.openrewrite.table.SourcesFileResults - Source files that had search resultsSearch results that were found during the recipe run.
org.openrewrite.table.SearchResults - Source files that errored on a recipeThe details of all errors produced by a recipe run.
org.openrewrite.table.SourcesFileErrors - Recipe performanceStatistics used in analyzing the performance of recipes.
org.openrewrite.table.RecipeRunStats