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

com.groupbyinc.injector.StaticInjectorFactory Maven / Gradle / Ivy

There is a newer version: 3.2.0
Show newest version
package com.groupbyinc.injector;

import com.groupbyinc.util.PropertyUtils;

public class StaticInjectorFactory {

  public StaticInjector create() {
    if (PropertyUtils.getFlag("threadLocal")) {
      return new ThreadLocalInjector();
    } else {
      return new GlobalInjector();
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy