com.parisesoftware.spring.config.ISpringBeanProvider.groovy Maven / Gradle / Ivy
package com.parisesoftware.spring.config
/**
* Spring Bean Provider
* Abstraction for a class that Creates Spring Beans
*
* @since 1.0
* @version 1.0
*/
interface ISpringBeanProvider {
/**
* Returns the Object instance associated with the given Spring Bean Name
* @param beanName the Spring Bean Name
* @return {@code Object} generic boxing of the bean instance
*/
Object getBean(String beanName)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy