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