public interface DependencyInfo
Aggregates the set of
InjectionPointInfo's that are dependent upon a specific and common
ServiceInfo definition.-
Method Summary
Modifier and TypeMethodDescriptionThe service info describing what the injection point dependencies are dependent upon.Set<? extends InjectionPointInfo>The set of injection points that depends upondependencyTo().TheServiceProviderthat this dependency is optional resolved and bound to.
-
Method Details
-
dependencyTo
ServiceInfoCriteria dependencyTo()The service info describing what the injection point dependencies are dependent upon.- Returns:
- the service info dependency
-
injectionPointDependencies
Set<? extends InjectionPointInfo> injectionPointDependencies()The set of injection points that depends upondependencyTo().- Returns:
- the set of dependencies
-
resolvedTo
Optional<ServiceProvider<?>> resolvedTo()TheServiceProviderthat this dependency is optional resolved and bound to. All dependencies frominjectionPointDependencies()will be bound to this resolution.- Returns:
- the optional resolved and bounded service provider
-