1 /**
2 * Copyright 2012 The Kuali Foundation Licensed under the Educational Community License, Version 2.0 (the "License"); you may not
3 * use this file except in compliance with the License. You may obtain a copy of the License at
4 *
5 * http://www.osedu.org/licenses/ECL-2.0
6 *
7 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS"
8 * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language
9 * governing permissions and limitations under the License.
10 *
11 * Created by Daniel on 4/26/12
12 */
13 package org.kuali.student.r2.common.class1.search;
14
15 import org.kuali.student.r2.common.dao.GenericEntityDao;
16
17 /**
18 * Abstract class for hard wired impls
19 *
20 * @author Kuali Student Team
21 */
22 public abstract class SearchServiceAbstractHardwiredImpl
23 extends SearchServiceAbstractHardwiredImplBase {
24
25 private GenericEntityDao genericEntityDao;
26
27 public GenericEntityDao getGenericEntityDao() {
28 return genericEntityDao;
29 }
30
31 public void setGenericEntityDao(GenericEntityDao genericEntityDao) {
32 this.genericEntityDao = genericEntityDao;
33 }
34
35 }