You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@openwebbeans.apache.org by "Romain Manni-Bucau (JIRA)" <ji...@apache.org> on 2019/05/09 16:46:00 UTC

[jira] [Updated] (OWB-1287) Add org.apache.webbeans.application.supportsImplicitQualifierInjection to enable to skip @Inject for injections based on qualifiers

     [ https://issues.apache.org/jira/browse/OWB-1287?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Romain Manni-Bucau updated OWB-1287:
------------------------------------
    Description: 
The feature enables to replace

{code}
@Inject
@MyQualifier
private Foo foo;
{code}

by

{code}
@MyQualifier
private Foo foo;
{code}

it concerns fields and methods.

  was:
The feature enables to replace

{code}
@Inject
@MyQualifier
private Foo foo;
{code}

by

{code}
@MyQualifier
private Foo foo;
{code}


> Add org.apache.webbeans.application.supportsImplicitQualifierInjection to enable to skip @Inject for injections based on qualifiers
> -----------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: OWB-1287
>                 URL: https://issues.apache.org/jira/browse/OWB-1287
>             Project: OpenWebBeans
>          Issue Type: Task
>            Reporter: Romain Manni-Bucau
>            Assignee: Romain Manni-Bucau
>            Priority: Major
>             Fix For: 2.0.11
>
>
> The feature enables to replace
> {code}
> @Inject
> @MyQualifier
> private Foo foo;
> {code}
> by
> {code}
> @MyQualifier
> private Foo foo;
> {code}
> it concerns fields and methods.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)