28
28
import java .util .stream .Collectors ;
29
29
import java .util .stream .Stream ;
30
30
31
- import javax .enterprise .context .ApplicationScoped ;
32
- import javax .enterprise .context .spi .CreationalContext ;
33
- import javax .enterprise .inject .Alternative ;
34
- import javax .enterprise .inject .Stereotype ;
35
- import javax .enterprise .inject .spi .Bean ;
36
- import javax .enterprise .inject .spi .BeanManager ;
37
- import javax .enterprise .inject .spi .InjectionPoint ;
38
- import javax .enterprise .inject .spi .PassivationCapable ;
31
+ import jakarta .enterprise .context .ApplicationScoped ;
32
+ import jakarta .enterprise .context .spi .CreationalContext ;
33
+ import jakarta .enterprise .inject .Alternative ;
34
+ import jakarta .enterprise .inject .Stereotype ;
35
+ import jakarta .enterprise .inject .spi .Bean ;
36
+ import jakarta .enterprise .inject .spi .BeanManager ;
37
+ import jakarta .enterprise .inject .spi .InjectionPoint ;
38
+ import jakarta .enterprise .inject .spi .PassivationCapable ;
39
39
40
40
import org .apache .commons .logging .Log ;
41
41
import org .apache .commons .logging .LogFactory ;
@@ -155,7 +155,7 @@ private String createPassivationId(Set<Annotation> qualifiers, Class<?> reposito
155
155
156
156
/*
157
157
* (non-Javadoc)
158
- * @see javax .enterprise.inject.spi.Bean#getTypes()
158
+ * @see jakarta .enterprise.inject.spi.Bean#getTypes()
159
159
*/
160
160
@ SuppressWarnings ("rawtypes" )
161
161
public Set <Type > getTypes () {
@@ -204,7 +204,7 @@ public final void initialize() {
204
204
205
205
/*
206
206
* (non-Javadoc)
207
- * @see javax .enterprise.context.spi.Contextual#create(javax .enterprise.context.spi.CreationalContext)
207
+ * @see jakarta .enterprise.context.spi.Contextual#create(jakarta .enterprise.context.spi.CreationalContext)
208
208
*/
209
209
public final T create (@ SuppressWarnings ("null" ) CreationalContext <T > creationalContext ) {
210
210
@@ -224,7 +224,7 @@ public final T create(@SuppressWarnings("null") CreationalContext<T> creationalC
224
224
225
225
/*
226
226
* (non-Javadoc)
227
- * @see javax .enterprise.context.spi.Contextual#destroy(java.lang.Object, javax .enterprise.context.spi.CreationalContext)
227
+ * @see jakarta .enterprise.context.spi.Contextual#destroy(java.lang.Object, jakarta .enterprise.context.spi.CreationalContext)
228
228
*/
229
229
public void destroy (@ SuppressWarnings ("null" ) T instance ,
230
230
@ SuppressWarnings ("null" ) CreationalContext <T > creationalContext ) {
@@ -239,23 +239,23 @@ public void destroy(@SuppressWarnings("null") T instance,
239
239
240
240
/*
241
241
* (non-Javadoc)
242
- * @see javax .enterprise.inject.spi.Bean#getQualifiers()
242
+ * @see jakarta .enterprise.inject.spi.Bean#getQualifiers()
243
243
*/
244
244
public Set <Annotation > getQualifiers () {
245
245
return qualifiers ;
246
246
}
247
247
248
248
/*
249
249
* (non-Javadoc)
250
- * @see javax .enterprise.inject.spi.Bean#getName()
250
+ * @see jakarta .enterprise.inject.spi.Bean#getName()
251
251
*/
252
252
public String getName () {
253
253
return repositoryType .getName ();
254
254
}
255
255
256
256
/*
257
257
* (non-Javadoc)
258
- * @see javax .enterprise.inject.spi.Bean#getStereotypes()
258
+ * @see jakarta .enterprise.inject.spi.Bean#getStereotypes()
259
259
*/
260
260
public Set <Class <? extends Annotation >> getStereotypes () {
261
261
@@ -267,47 +267,47 @@ public Set<Class<? extends Annotation>> getStereotypes() {
267
267
268
268
/*
269
269
* (non-Javadoc)
270
- * @see javax .enterprise.inject.spi.Bean#getBeanClass()
270
+ * @see jakarta .enterprise.inject.spi.Bean#getBeanClass()
271
271
*/
272
272
public Class <?> getBeanClass () {
273
273
return repositoryType ;
274
274
}
275
275
276
276
/*
277
277
* (non-Javadoc)
278
- * @see javax .enterprise.inject.spi.Bean#isAlternative()
278
+ * @see jakarta .enterprise.inject.spi.Bean#isAlternative()
279
279
*/
280
280
public boolean isAlternative () {
281
281
return repositoryType .isAnnotationPresent (Alternative .class );
282
282
}
283
283
284
284
/*
285
285
* (non-Javadoc)
286
- * @see javax .enterprise.inject.spi.Bean#isNullable()
286
+ * @see jakarta .enterprise.inject.spi.Bean#isNullable()
287
287
*/
288
288
public boolean isNullable () {
289
289
return false ;
290
290
}
291
291
292
292
/*
293
293
* (non-Javadoc)
294
- * @see javax .enterprise.inject.spi.Bean#getInjectionPoints()
294
+ * @see jakarta .enterprise.inject.spi.Bean#getInjectionPoints()
295
295
*/
296
296
public Set <InjectionPoint > getInjectionPoints () {
297
297
return Collections .emptySet ();
298
298
}
299
299
300
300
/*
301
301
* (non-Javadoc)
302
- * @see javax .enterprise.inject.spi.Bean#getScope()
302
+ * @see jakarta .enterprise.inject.spi.Bean#getScope()
303
303
*/
304
304
public Class <? extends Annotation > getScope () {
305
305
return ApplicationScoped .class ;
306
306
}
307
307
308
308
/*
309
309
* (non-Javadoc)
310
- * @see javax .enterprise.inject.spi.PassivationCapable#getId()
310
+ * @see jakarta .enterprise.inject.spi.PassivationCapable#getId()
311
311
*/
312
312
public String getId () {
313
313
return passivationId ;
0 commit comments