001 /* 002 * Copyright 2006-2011 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 017 package org.kuali.rice.ksb.messaging.config; 018 019 import org.kuali.rice.core.impl.config.module.ModuleConfigurer; 020 021 import java.util.Collections; 022 import java.util.List; 023 024 025 /** 026 * A configurer which starts up an alternate Spring file to configure some services that are needed in 027 * "Thin Client" mode. A "thin client" is a client which communicates directly with service 028 * endpoints and doesn't use the registry or the message queue. Esentially, all it uses the KSB for are 029 * it's Digital Signature services. 030 * 031 * <p>TODO This is essentially a hack to allow for secure thin client mode of workflow to work properly 032 * without requiring the entire service bus to be started (which requires datasources, etc.). We need 033 * to examine how better to support this sort of a concept in the future. 034 * 035 * @author Kuali Rice Team (rice.collab@kuali.org) 036 * 037 */ 038 public class KSBThinClientConfigurer extends ModuleConfigurer { 039 040 public KSBThinClientConfigurer() { 041 super(); 042 setModuleName( "KSB" ); 043 setHasWebInterface(false); 044 } 045 046 @Override 047 public List<String> getPrimarySpringFiles(){ 048 return Collections.singletonList("classpath:org/kuali/rice/ksb/config/KSBThinClientSpringBeans.xml"); 049 } 050 051 }