1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kns.config; |
18 | |
|
19 | |
import org.kuali.rice.core.api.config.ConfigurationException; |
20 | |
import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader; |
21 | |
import org.springframework.beans.factory.FactoryBean; |
22 | |
import org.springframework.beans.factory.InitializingBean; |
23 | |
|
24 | |
|
25 | |
|
26 | |
|
27 | |
|
28 | |
|
29 | |
|
30 | |
public class GlobalResourceLoaderServiceFactoryBean implements FactoryBean<Object>, InitializingBean { |
31 | |
|
32 | |
private String serviceName; |
33 | |
private boolean singleton; |
34 | |
private boolean mustExist; |
35 | |
|
36 | 0 | public GlobalResourceLoaderServiceFactoryBean() { |
37 | 0 | this.mustExist = true; |
38 | 0 | } |
39 | |
|
40 | |
public Object getObject() throws Exception { |
41 | 0 | Object service = GlobalResourceLoader.getService(this.getServiceName()); |
42 | 0 | if (mustExist && service == null) { |
43 | 0 | throw new IllegalStateException("Service must exist and no service could be located with name: " + this.getServiceName()); |
44 | |
} |
45 | 0 | return service; |
46 | |
} |
47 | |
|
48 | |
public Class<?> getObjectType() { |
49 | 0 | return Object.class; |
50 | |
} |
51 | |
|
52 | |
public boolean isSingleton() { |
53 | 0 | return singleton; |
54 | |
} |
55 | |
|
56 | |
public String getServiceName() { |
57 | 0 | return serviceName; |
58 | |
} |
59 | |
|
60 | |
public void setServiceName(String serviceName) { |
61 | 0 | this.serviceName = serviceName; |
62 | 0 | } |
63 | |
|
64 | |
public void setSingleton(boolean singleton) { |
65 | 0 | this.singleton = singleton; |
66 | 0 | } |
67 | |
|
68 | |
public boolean isMustExist() { |
69 | 0 | return mustExist; |
70 | |
} |
71 | |
|
72 | |
public void setMustExist(boolean mustExist) { |
73 | 0 | this.mustExist = mustExist; |
74 | 0 | } |
75 | |
|
76 | |
|
77 | |
public void afterPropertiesSet() throws Exception { |
78 | 0 | if (this.getServiceName() == null) { |
79 | 0 | throw new ConfigurationException("No serviceName given."); |
80 | |
} |
81 | 0 | } |
82 | |
|
83 | |
} |