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

org.springframework.guice.annotation.InjectorFactory Maven / Gradle / Ivy

package org.springframework.guice.annotation;

import java.util.List;

import com.google.inject.Injector;
import com.google.inject.Module;

/***
 * Factory which allows for custom creation of the Guice Injector to be used
 * in the @{@link EnableGuiceModules} feature.
 */
public interface InjectorFactory {
    
    public Injector createInjector(List modules);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy