org.enodeframework.common.container.IObjectContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode Show documentation
Show all versions of enode Show documentation
The enodeframework core implementation.
package org.enodeframework.common.container;
import java.util.Map;
/**
* 抽象的Ioc容器,Dependency Inject
*/
public interface IObjectContainer {
Map resolveAll(Class targetClz);
TService resolve(Class serviceType);
}