| Package | Description |
|---|---|
| javax.enterprise.context |
Annotations and interfaces relating to scopes and contexts.
|
| javax.enterprise.inject |
Annotations relating to bean and stereotype definition,
built-in qualifiers, and interfaces and classes relating
to programmatic lookup.
|
| javax.inject |
This package specifies a means for obtaining objects in such a way as to
maximize reusability, testability and maintainability compared to
traditional approaches such as constructors, factories, and service
locators (e.g., JNDI).
|
| org.jboss.weld.context.bound |
JBoss, Home of Professional Open Source
Copyright 2015, Red Hat, Inc. and/or its affiliates, and individual
contributors by the @authors tag.
|
| org.jboss.weld.context.ejb |
JBoss, Home of Professional Open Source
Copyright 2015, Red Hat, Inc. and/or its affiliates, and individual
contributors by the @authors tag.
|
| org.jboss.weld.context.http |
JBoss, Home of Professional Open Source
Copyright 2015, Red Hat, Inc. and/or its affiliates, and individual
contributors by the @authors tag.
|
| org.jboss.weld.context.unbound |
JBoss, Home of Professional Open Source
Copyright 2015, Red Hat, Inc. and/or its affiliates, and individual
contributors by the @authors tag.
|
| org.jboss.weld.literal |
JBoss, Home of Professional Open Source
Copyright 2015, Red Hat, Inc. and/or its affiliates, and individual
contributors by the @authors tag.
|
| Modifier and Type | Class and Description |
|---|---|
interface |
Destroyed
The
@Destroyed qualifier. |
interface |
Initialized
The
@Initialized qualifier. |
| Modifier and Type | Class and Description |
|---|---|
interface |
Any
The built-in qualifier type.
|
interface |
Decorated
A decorator may inject metadata about the bean it is decorating
@Decorator
class TimestampLogger implements Logger {
@Inject
@Delegate
@Any
Logger logger;
@Inject
@Decorated
Bean<Logger> bean;
void log(String message) {
...
}
}
|
interface |
Default
The default qualifier type.
|
interface |
Intercepted
An interceptor may inject metadata about the bean it is intercepting.
|
interface |
New
The
New qualifier was deprecated in CDI 1.1. |
| Modifier and Type | Class and Description |
|---|---|
interface |
Named
String-based qualifier.
|
| Modifier and Type | Class and Description |
|---|---|
interface |
Bound
Qualifier used with all for all of the bound (map backed) contexts Weld offers.
|
| Modifier and Type | Class and Description |
|---|---|
interface |
Ejb
Qualifier used with all for all of the EJB contexts Weld offers.
|
| Modifier and Type | Class and Description |
|---|---|
interface |
Http
Qualifier used with all for all of the Servlet backed contexts Weld offers.
|
| Modifier and Type | Class and Description |
|---|---|
interface |
Unbound
Qualifier used with all for all of the unbound contexts Weld offers.
|
| Modifier and Type | Field and Description |
|---|---|
static Qualifier |
QualifierLiteral.INSTANCE |
Copyright © 2015. All Rights Reserved.