2237648b0b5b58f91521976886558970eec643a5
[utils] / support / cdi / src / main / java / org / wamblee / cdi / CdiInjectorFactory.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 import java.util.logging.Logger;
19
20 import javax.enterprise.inject.spi.BeanManager;
21
22 import org.wamblee.inject.Injector;
23 import org.wamblee.inject.InjectorFactory;
24
25 /**
26  * Factory that creates CDI injectors. In case no beanmanager is found then
27  * injectors will do nothing. This class may be subclassed for testing to
28  * override the injectors that are returned.
29  * 
30  * @author Erik Brakkee
31  */
32 public class CdiInjectorFactory implements InjectorFactory {
33
34     private static final Logger LOGGER = Logger
35         .getLogger(CdiInjectorFactory.class.getName());
36
37     private BeanManager beanManager;
38
39     /**
40      * Constructs the factory using the default bean manager.
41      */
42     public CdiInjectorFactory() {
43         this(BeanManagerLookup.lookup());
44     }
45
46     /**
47      * Constructs the factory using an explicit bean manager.
48      * 
49      * @param aBeanManager
50      */
51     public CdiInjectorFactory(BeanManager aBeanManager) {
52         beanManager = aBeanManager;
53     }
54
55     @Override
56     public Injector create(Class aClass) {
57         if (beanManager == null) {
58             // Typically for unit test.
59             return new Injector() {
60                 @Override
61                 public void inject(Object aComponent) {
62                     // Empty.
63                 }
64             };
65         }
66         return new CdiInjector(beanManager, aClass);
67     }
68
69 }