Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
KIMThinClientConfigurer |
|
| 1.0;1 |
1 | /** | |
2 | * Copyright 2005-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 | package org.kuali.rice.kim.config; | |
17 | ||
18 | import org.kuali.rice.core.impl.config.module.ModuleConfigurer; | |
19 | ||
20 | import java.util.Collections; | |
21 | import java.util.List; | |
22 | ||
23 | ||
24 | /** | |
25 | * A configure which starts up an alternate Spring file to configure some services that are needed in | |
26 | * "Thin Client" mode for KIM. A "thin client" is a client which communicates directly with service | |
27 | * endpoints and doesn't use the registry or the message queue. | |
28 | * | |
29 | * <p>TODO This is essentially a hack to allow for just the IdentityManagementServiceImpl to be loaded | |
30 | * into a "thin client" application. The PersonServiceImpl services pulls in way too many dependencies | |
31 | * for a thin client application so we can't include it here. | |
32 | * | |
33 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
34 | * | |
35 | */ | |
36 | public class KIMThinClientConfigurer extends ModuleConfigurer { | |
37 | ||
38 | public KIMThinClientConfigurer() { | |
39 | 0 | super(); |
40 | 0 | setModuleName( "KIM" ); |
41 | 0 | setHasWebInterface(false); |
42 | 0 | } |
43 | ||
44 | @Override | |
45 | public List<String> getPrimarySpringFiles(){ | |
46 | 0 | return Collections.singletonList("classpath:org/kuali/rice/kim/config/KIMThinClientSpringBeans.xml"); |
47 | } | |
48 | ||
49 | } |