#1773 Update documentation: componentModel=jsr330 with @DecoratedWith not longer experimental (#1907)

This commit is contained in:
Andrei Arlou 2019-09-18 07:18:05 +03:00 committed by GitHub
parent 7e0327767f
commit 447bb00f89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 7 deletions

View File

@ -23,8 +23,6 @@ import java.lang.annotation.Target;
* <b>NOTE:</b> This annotation is not supported for the component model {@code cdi}. Use CDI's own * <b>NOTE:</b> This annotation is not supported for the component model {@code cdi}. Use CDI's own
* <a href="https://docs.jboss.org/cdi/spec/1.0/html/decorators.html">{@code @Decorator}</a> feature instead. * <a href="https://docs.jboss.org/cdi/spec/1.0/html/decorators.html">{@code @Decorator}</a> feature instead.
* <p> * <p>
* <b>NOTE:</b> The decorator feature when used with component model {@code jsr330} is considered <em>experimental</em>
* and it may change in future releases.
* <h2>Examples</h2> * <h2>Examples</h2>
* <p> * <p>
* For the examples below, consider the following mapper declaration: * For the examples below, consider the following mapper declaration:

View File

@ -142,11 +142,6 @@ private PersonMapper personMapper; // injects the decorator, with the injected o
---- ----
==== ====
[WARNING]
====
`@DecoratedWith` in combination with component model `jsr330` is considered experimental as of the 1.0.0.CR2 release. The way the original mapper is referenced in the decorator or the way the decorated mapper is injected in the application code might still change.
====
[[customizing-mappings-with-before-and-after]] [[customizing-mappings-with-before-and-after]]
=== Mapping customization with before-mapping and after-mapping methods === Mapping customization with before-mapping and after-mapping methods