Added protected getBeanName() for subclass access.

This commit is contained in:
Mark Fisher
2008-11-19 21:47:47 +00:00
parent 8e09a38ce9
commit 13d12557e5

View File

@@ -56,6 +56,10 @@ public abstract class IntegrationObjectSupport implements BeanNameAware, BeanFac
this.beanName = beanName;
}
protected String getBeanName() {
return this.beanName;
}
public final void setBeanFactory(BeanFactory beanFactory) {
Assert.notNull(beanFactory, "beanFactory must not be null");
this.beanFactory = beanFactory;