Package net.officefloor.spring.extension
Interface SpringBeanDecoratorContext
-
public interface SpringBeanDecoratorContextSpring Bean decorator context.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddDependency(java.lang.String qualifier, java.lang.Class<?> type)Adds a further dependency for the Spring Bean.java.lang.StringgetBeanName()Obtains the name of the Spring Bean.java.lang.Class<?>getBeanType()Obtains the type of the Spring Bean.
-
-
-
Method Detail
-
getBeanName
java.lang.String getBeanName()
Obtains the name of the Spring Bean.- Returns:
- Name of the Spring Bean.
-
getBeanType
java.lang.Class<?> getBeanType()
Obtains the type of the Spring Bean.- Returns:
- Type of the Spring Bean.
-
addDependency
void addDependency(java.lang.String qualifier, java.lang.Class<?> type)Adds a further dependency for the Spring Bean.- Parameters:
qualifier- Qualifier. May benull.type- Type for dependency.
-
-