Expose primary flag on BeanDefinitionBuilder
Closes gh-23794
This commit is contained in:
parent
dc59e50561
commit
248ad0fa79
|
|
@ -314,6 +314,15 @@ public final class BeanDefinitionBuilder {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set whether this bean is a primary autowire candidate.
|
||||||
|
* @since 5.1.11
|
||||||
|
*/
|
||||||
|
public BeanDefinitionBuilder setPrimary(boolean primary) {
|
||||||
|
this.beanDefinition.setPrimary(primary);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the role of this definition.
|
* Set the role of this definition.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue