All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.foxinmy.weixin4j.dispatcher.BeanFactory Maven / Gradle / Ivy

package com.foxinmy.weixin4j.dispatcher;

import java.util.Map;

/**
 * Bean构造
 *
 * @className BeanFactory
 * @author jinyu([email protected])
 * @date 2015年5月7日
 * @since JDK 1.6
 * @see
 */
public interface BeanFactory {
	Object getBean(String name);

	 T getBean(Class clazz);

	 T getBean(String name, Class clazz);

	 Map getBeans(Class clazz);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy