A B C D E F G H I J K L M N O P Q R S T U V W X Y Z
A configurable interface for obtaining a bean's name A class which implements this interface should return the unique bean name for configuration to use
}
@Test
public void testGetBeanName() {
ConfigurerImpl configurer = new ConfigurerImpl();
Object beanInstance = new Configurable() {
public String getBeanName() {
return "a";
}
};