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

com.ctrip.framework.apollo.internals.Injector Maven / Gradle / Ivy

The newest version!
package com.ctrip.framework.apollo.internals;

/**
 * @author Jason Song([email protected])
 */
public interface Injector {

  /**
   * Returns the appropriate instance for the given injection type
   */
   T getInstance(Class clazz);

  /**
   * Returns the appropriate instance for the given injection type and name
   */
   T getInstance(Class clazz, String name);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy