Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
KSBThinClientConfigurer |
|
| 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.ksb.messaging.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 configurer which starts up an alternate Spring file to configure some services that are needed in | |
26 | * "Thin Client" mode. A "thin client" is a client which communicates directly with service | |
27 | * endpoints and doesn't use the registry or the message queue. Esentially, all it uses the KSB for are | |
28 | * it's Digital Signature services. | |
29 | * | |
30 | * <p>TODO This is essentially a hack to allow for secure thin client mode of workflow to work properly | |
31 | * without requiring the entire service bus to be started (which requires datasources, etc.). We need | |
32 | * to examine how better to support this sort of a concept in the future. | |
33 | * | |
34 | * @author Kuali Rice Team (rice.collab@kuali.org) | |
35 | * | |
36 | */ | |
37 | public class KSBThinClientConfigurer extends ModuleConfigurer { | |
38 | ||
39 | public KSBThinClientConfigurer() { | |
40 | 0 | super(); |
41 | 0 | setModuleName( "KSB" ); |
42 | 0 | setHasWebInterface(false); |
43 | 0 | } |
44 | ||
45 | @Override | |
46 | public List<String> getPrimarySpringFiles(){ | |
47 | 0 | return Collections.singletonList("classpath:org/kuali/rice/ksb/config/KSBThinClientSpringBeans.xml"); |
48 | } | |
49 | ||
50 | } |