Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
BeanHolder |
|
| 1.25;1.25 |
1 | /* | |
2 | * Copyright 2006-2011 The Kuali Foundation | |
3 | * | |
4 | * Licensed under the Educational Community 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.opensource.org/licenses/ecl2.php | |
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 | ||
17 | package org.kuali.rice.core; | |
18 | ||
19 | import org.springframework.beans.factory.FactoryBean; | |
20 | ||
21 | /** | |
22 | * The entire purpose of this class is to wrap an otherwise normal bean | |
23 | * whose class is dynamically set at runtime through the PropertyPlaceholderConfigurer | |
24 | * because the <bean> element attributes themselves are not parameterizable, | |
25 | * only the property values. | |
26 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
27 | */ | |
28 | 0 | public class BeanHolder implements FactoryBean { |
29 | private Class clazz; | |
30 | private Object instance; | |
31 | ||
32 | public synchronized Object getObject() throws Exception { | |
33 | 0 | if (this.instance == null) { |
34 | 0 | this.instance = this.clazz.newInstance(); |
35 | } | |
36 | 0 | return this.instance; |
37 | } | |
38 | ||
39 | public Class getObjectType() { | |
40 | 0 | return this.clazz; |
41 | } | |
42 | ||
43 | public void setObjectType(Class clazz) { | |
44 | 0 | this.clazz = clazz; |
45 | 0 | } |
46 | ||
47 | public boolean isSingleton() { | |
48 | 0 | return true; |
49 | } | |
50 | } |