File tree Expand file tree Collapse file tree 2 files changed +39
-1
lines changed
cdi-processor/src/main/resources/META-INF/services
cdi/src/test/java/io/helidon/integrations/micronaut/cdi Expand file tree Collapse file tree 2 files changed +39
-1
lines changed Original file line number Diff line number Diff line change
1
+ #
2
+ # Copyright (c) 2024 Oracle and/or its affiliates.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+ #
16
+
17
+ io.helidon.integrations.micronaut.cdi.processor.ApplicationScopedTransformer
18
+ io.helidon.integrations.micronaut.cdi.processor.RequestScopedTransformer
19
+ io.helidon.integrations.micronaut.cdi.processor.DependentTransformer
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2020, 2021 Oracle and/or its affiliates.
2
+ * Copyright (c) 2020, 2024 Oracle and/or its affiliates.
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
21
21
@ ApplicationScoped
22
22
public class TestCdiBean implements TestBean {
23
23
24
+ @ CdiIntercepted
25
+ @ Override
26
+ public String cdiAnnotated () {
27
+ return TestBean .super .cdiAnnotated ();
28
+ }
29
+
30
+ @ MicroIntercepted
31
+ @ Override
32
+ public String µAnnotated () {
33
+ return TestBean .super .µAnnotated ();
34
+ }
35
+
36
+ @ CdiIntercepted
37
+ @ MicroIntercepted
38
+ @ Override
39
+ public String bothAnnotated () {
40
+ return TestBean .super .bothAnnotated ();
41
+ }
42
+
24
43
@ Override
25
44
public String name () {
26
45
return "CdiBean" ;
You can’t perform that action at this time.
0 commit comments