001/*
002 * Copyright 2012 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 */
016package org.kuali.ole.solr;
017
018import org.kuali.ole.docstore.discovery.service.AdminService;
019
020/**
021 * Class to DummyAdminService.
022 *
023 * @author Rajesh Chowdary K
024 * @created Apr 24, 2012
025 */
026public class DummyAdminService
027        implements AdminService {
028
029    /**
030     *
031     */
032    public DummyAdminService() {
033    }
034
035    /*
036     * (non-Javadoc)
037     * 
038     * @see org.kuali.ole.docstore.discovery.service.AdminService#optimize(java.lang.String)
039     */
040    @Override
041    public void optimize(String indexName) throws Exception {
042    }
043
044    /*
045     * (non-Javadoc)
046     * 
047     * @see org.kuali.ole.docstore.discovery.service.AdminService#optimize()
048     */
049    @Override
050    public void optimize() throws Exception {
051
052    }
053
054    /**
055     * @throws Exception
056     */
057    @Override
058    public void optimize(Boolean waitFlush, Boolean waitSearcher) throws Exception {
059
060    }
061
062}