File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
processor/src/main/java/io/quarkus/arc/processor
runtime/src/main/java/io/quarkus/arc/impl Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -142,6 +142,10 @@ public final class DotNames {
142
142
public static final DotName VETOED_PRODUCER = create (VetoedProducer .class );
143
143
public static final DotName LIST = create (List .class );
144
144
public static final DotName ALL = create (All .class );
145
+ /**
146
+ * @see Identified
147
+ */
148
+ @ Deprecated (forRemoval = true , since = "3.26" )
145
149
public static final DotName IDENTIFIED = create (Identified .class );
146
150
public static final DotName INSTANCE_HANDLE = create (InstanceHandle .class );
147
151
public static final DotName NO_CLASS_INTERCEPTORS = create (NoClassInterceptors .class );
Original file line number Diff line number Diff line change 16
16
* Qualifies a bean with a string-based identifier.
17
17
* <p>
18
18
* This is an internal qualifier and should not be used by application beans.
19
+ *
20
+ * @deprecated This is an internal qualifier and should have never been used publicly.
21
+ * It shall be removed at some point after Quarkus 3.27. See also
22
+ * <a href="https://github.com/quarkusio/quarkus/pull/32179">#32179</a> and
23
+ * <a href="https://github.com/quarkusio/quarkus/pull/49178">#49178</a>.
19
24
*/
20
25
@ Qualifier
21
26
@ Retention (RUNTIME )
22
27
@ Target ({ TYPE , FIELD , METHOD , PARAMETER })
28
+ @ Deprecated (forRemoval = true , since = "3.26" )
23
29
public @interface Identified {
24
30
25
31
String value ();
You can’t perform that action at this time.
0 commit comments