public interface AliasRegistry
BeanDefinitionRegistry
.Modifier and Type | Method and Description |
---|---|
String[] |
getAliases(String name)
Return the aliases for the given name, if defined.
|
boolean |
isAlias(String beanName)
Determine whether this given name is defines as an alias
(as opposed to the name of an actually registered component).
|
void |
registerAlias(String name,
String alias)
Given a name, register an alias for it.
|
void |
removeAlias(String alias)
Remove the specified alias from this registry.
|
void registerAlias(String name, String alias)
name
- the canonical namealias
- the alias to be registeredIllegalStateException
- if the alias is already in use
and may not be overriddenvoid removeAlias(String alias)
alias
- the alias to removeIllegalStateException
- if no such alias was foundboolean isAlias(String beanName)
beanName
- the bean name to check