1 /* 2 * Copyright 2012 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 package org.kuali.ole.solr; 17 18 import org.kuali.ole.docstore.discovery.service.AdminService; 19 20 /** 21 * Class to DummyAdminService. 22 * 23 * @author Rajesh Chowdary K 24 * @created Apr 24, 2012 25 */ 26 public class DummyAdminService 27 implements AdminService { 28 29 /** 30 * 31 */ 32 public DummyAdminService() { 33 } 34 35 /* 36 * (non-Javadoc) 37 * 38 * @see org.kuali.ole.docstore.discovery.service.AdminService#optimize(java.lang.String) 39 */ 40 @Override 41 public void optimize(String indexName) throws Exception { 42 } 43 44 /* 45 * (non-Javadoc) 46 * 47 * @see org.kuali.ole.docstore.discovery.service.AdminService#optimize() 48 */ 49 @Override 50 public void optimize() throws Exception { 51 52 } 53 54 /** 55 * @throws Exception 56 */ 57 @Override 58 public void optimize(Boolean waitFlush, Boolean waitSearcher) throws Exception { 59 60 } 61 62 }