001/**
002 * Copyright 2012 The Kuali Foundation Licensed under the Educational Community License, Version 2.0 (the "License"); you may not
003 * use this file except in compliance with the License. You may obtain a copy of the License at
004 *
005 * http://www.osedu.org/licenses/ECL-2.0
006 *
007 * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS"
008 * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language
009 * governing permissions and limitations under the License.
010 *
011 * Created by Daniel on 4/26/12
012 */
013package org.kuali.student.r2.common.class1.search;
014
015import org.kuali.student.r2.common.dao.GenericEntityDao;
016
017/**
018 * Abstract class for hard wired impls
019 *
020 * @author Kuali Student Team
021 */
022public abstract class SearchServiceAbstractHardwiredImpl
023        extends SearchServiceAbstractHardwiredImplBase {
024
025    private GenericEntityDao genericEntityDao;
026
027    public GenericEntityDao getGenericEntityDao() {
028        return genericEntityDao;
029    }
030
031    public void setGenericEntityDao(GenericEntityDao genericEntityDao) {
032        this.genericEntityDao = genericEntityDao;
033    }
034
035}