cdi project in initial revision
[utils] / support / cdi / src / main / java / org / wamblee / cdi / SimpleInjector.java
1 /*
2  * Copyright 2005-2010 the original author or authors.
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * 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 org.wamblee.cdi;
17
18 /**
19  * Singleton injector access. This should be used as main entry point for
20  * injection. A different {@link InjectorFactory} can be plugged in for testing.
21  * 
22  * @author Erik Brakkee
23  */
24 public class SimpleInjector {
25
26     private static InjectorCache cache = new InjectorCache(
27         new CdiInjectorFactory());
28
29     /**
30      * Override the injector factory (mainly fo runit test).
31      * 
32      * @param aFactory
33      *            Factory.
34      */
35     public static void setInjectorFactory(InjectorFactory aFactory) {
36         cache = new InjectorCache(aFactory);
37     }
38
39     /**
40      * Injects into a given object.
41      * 
42      * @param aObject
43      *            Object to inject into.
44      */
45     public static void inject(Object aObject) {
46         cache.getInjector(aObject.getClass()).inject(aObject);
47     }
48 }