Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove references to the removed jakarta.annotation.ManagedBean #750 #751

Merged
merged 1 commit into from
Jan 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,8 @@
/**
* <p>
* The container fires an event of this type for every injection point of every Java EE component class supporting injection
* that may be instantiated by the container at runtime, including every managed bean declared using
* {@code jakarta.annotation.ManagedBean}, EJB session or message-driven bean, enabled bean, enabled interceptor or enabled
* decorator.
* that may be instantiated by the container at runtime, including every EJB session or message-driven bean, enabled
* bean, enabled interceptor or enabled decorator.
* </p>
* <p>
* Any observer of this event is permitted to wrap and/or replace the {@link InjectionPoint} by calling either {@link #setInjectionPoint(InjectionPoint)} or {@link #configureInjectionPoint()}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
/**
* <p>
* The container fires an event of this type for every Java EE component class supporting injection that may be instantiated by
* the container at runtime, including every managed bean declared using {@code jakarta.annotation.ManagedBean}, EJB session or
* message-driven bean, enabled bean, enabled interceptor or enabled decorator.
* the container at runtime, including EJB session or message-driven bean, enabled bean, enabled interceptor or
* enabled decorator.
* </p>
* <p>
* Any observer of this event is permitted to wrap and/or replace the {@link InjectionTarget}. The
Expand Down
4 changes: 2 additions & 2 deletions spec/src/main/asciidoc/javaee/spi_ee.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ When running in Jakarta EE, the container must extend the rules defined in <<pro

==== `ProcessInjectionPoint` event and EJB

When running in Jakarta EE, the container must also fire an event for every injection point of every Jakarta EE component class supporting injection that may be instantiated by the container at runtime, including every managed bean declared using `@ManagedBean`, EJB session or message-driven bean.
When running in Jakarta EE, the container must also fire an event for every injection point of every Jakarta EE component class supporting injection that may be instantiated by the container at runtime, including every EJB session or message-driven bean.

[[process_injection_target_ee]]

==== `ProcessInjectionTarget` event and EJB

When running in Jakarta EE, the container must also fire an event for every Jakarta EE component class supporting injection that may be instantiated by the container at runtime, including every managed bean declared using `@ManagedBean`, EJB session or message-driven bean.
When running in Jakarta EE, the container must also fire an event for every Jakarta EE component class supporting injection that may be instantiated by the container at runtime, including every EJB session or message-driven bean.

The container must extend the rules defined in <<process_injection_target>> for managed bean to EJB session bean and other Jakarta EE component class supporting injection.

Expand Down