Skip to content

Commit

Permalink
This PR adds Javadoc for RegisteredBean.resolveAutowiredArgument()
Browse files Browse the repository at this point in the history
See gh-30401
Closes gh-30609
  • Loading branch information
izeye authored and sbrannen committed Jun 8, 2023
1 parent c1fe571 commit 7a4ed38
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,15 @@ public Executable resolveConstructorOrFactoryMethod() {
.resolveConstructorOrFactoryMethod(getBeanName(), getMergedBeanDefinition());
}

/**
* Resolve an autowired argument.
* @param descriptor the descriptor for the dependency (field/method/constructor)
* @param typeConverter the TypeConverter to use for populating arrays and collections
* @param autowiredBeans a Set that all names of autowired beans (used for
* resolving the given dependency) are supposed to be added to
* @return the resolved object, or {@code null} if none found
* @since 6.0.9
*/
@Nullable
public Object resolveAutowiredArgument(DependencyDescriptor descriptor, TypeConverter typeConverter,
Set<String> autowiredBeans) {
Expand Down

0 comments on commit 7a4ed38

Please sign in to comment.