/nodus-reactor/src/main/java/nodus/inject/Injector.java

https://bitbucket.org/brunofr/nodus · Java · 34 lines · 11 code · 5 blank · 18 comment · 0 complexity · 434d1b51b4ac7b1c5d09e79c745c48e3 MD5 · raw file

  1. /*
  2. * Copyright (c) 2011 Yahoo! Inc.
  3. *
  4. * Yahoo! Inc. licenses this file to you under the Apache License, Version
  5. * 2.0 (the "License"); you may not use this file except in compliance with
  6. * the License. You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package nodus.inject;
  17. import com.google.inject.Guice;
  18. /**
  19. * @author Bruno Fernandez-Ruiz
  20. */
  21. public class Injector {
  22. private static com.google.inject.Injector injector;
  23. static {
  24. injector = Guice.createInjector(new HttpModule());
  25. }
  26. public static <T> T getInstance(Class<T> clazz) {
  27. return injector.getInstance(clazz);
  28. }
  29. }