View Javadoc

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.krms.impl.repository;
18  
19  
20  import java.util.Collection;
21  import java.util.Collections;
22  import java.util.HashMap;
23  import java.util.Map;
24  
25  import org.apache.commons.collections.CollectionUtils;
26  import org.apache.commons.lang.StringUtils;
27  import org.kuali.rice.kns.service.BusinessObjectService;
28  import org.kuali.rice.kns.service.KNSServiceLocator;
29  
30  public class RepositoryServiceBase {
31  
32      protected BusinessObjectService businessObjectService;
33    
34      /**
35       * Sets the businessObjectService attribute value.
36       *
37       * @param businessObjectService The businessObjectService to set.
38       */
39      public void setBusinessObjectService(final BusinessObjectService businessObjectService) {
40          this.businessObjectService = businessObjectService;
41      }
42  
43      protected BusinessObjectService getBusinessObjectService() {
44  		if ( businessObjectService == null ) {
45  			businessObjectService = KNSServiceLocator.getBusinessObjectService();
46  		}
47  		return businessObjectService;
48  	}
49      
50  }