Package io.quarkus.arc.processor
Interface BeanDeploymentValidator.ValidationContext
-
- All Superinterfaces:
BuildExtension.BuildContext
- Enclosing interface:
- BeanDeploymentValidator
public static interface BeanDeploymentValidator.ValidationContext extends BuildExtension.BuildContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description voidaddDeploymentProblem(Throwable t)BeanStreambeans()List<Throwable>getDeploymentProblems()default Collection<InjectionPointInfo>getInjectionPoints()BeanStreamremovedBeans()-
Methods inherited from interface io.quarkus.arc.processor.BuildExtension.BuildContext
get, put
-
-
-
-
Method Detail
-
addDeploymentProblem
void addDeploymentProblem(Throwable t)
-
beans
BeanStream beans()
- Returns:
- a new stream of beans that form the deployment
-
removedBeans
BeanStream removedBeans()
- Returns:
- a new stream of beans that are considered
unusedand were removed from the deployment
-
getInjectionPoints
default Collection<InjectionPointInfo> getInjectionPoints()
-
-