Clover Coverage Report - KS Common UI 1.1.0-SNAPSHOT
Coverage timestamp: Tue Feb 15 2011 04:58:32 EST
../../../../../../../img/srcFileCovDistChart0.png 17% of files have more coverage
3   51   3   1
0   23   1   3
3     1  
1    
 
  SearchDispatchRpcGwtServlet       Line # 27 3 0% 3 6 0% 0.0
 
No Tests
 
1    /**
2    * Copyright 2010 The Kuali Foundation Licensed under the
3    * Educational Community License, Version 2.0 (the "License"); you may
4    * not use this file except in compliance with the License. You may
5    * obtain a copy of the License at
6    *
7    * http://www.osedu.org/licenses/ECL-2.0
8    *
9    * Unless required by applicable law or agreed to in writing,
10    * software distributed under the License is distributed on an "AS IS"
11    * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
12    * or implied. See the License for the specific language governing
13    * permissions and limitations under the License.
14    */
15   
16    package org.kuali.student.common.ui.server.gwt;
17   
18    import org.apache.log4j.Logger;
19    import org.kuali.student.common.ui.client.service.SearchRpcService;
20    import org.kuali.student.core.exceptions.MissingParameterException;
21    import org.kuali.student.core.search.dto.SearchRequest;
22    import org.kuali.student.core.search.dto.SearchResult;
23    import org.kuali.student.core.search.service.SearchDispatcher;
24   
25    import com.google.gwt.user.server.rpc.RemoteServiceServlet;
26   
 
27    public class SearchDispatchRpcGwtServlet extends RemoteServiceServlet implements SearchRpcService{
28   
29    private static final long serialVersionUID = 1L;
30   
31    final Logger LOG = Logger.getLogger(SearchDispatchRpcGwtServlet.class);
32    private SearchDispatcher searchDispatcher;
 
33  0 toggle public SearchDispatchRpcGwtServlet() {
34  0 super();
35    }
36   
37    /**
38    * Delegates to the service responsible for the given search type key
39    * @param searchRequest
40    * @return The searchResult from the delegated search or null
41    * @throws MissingParameterException
42    */
 
43  0 toggle @Override
44    public SearchResult search(SearchRequest searchRequest) {
45  0 return searchDispatcher.dispatchSearch(searchRequest);
46    }
47   
 
48  0 toggle public void setSearchDispatcher(SearchDispatcher searchDispatcher) {
49  0 this.searchDispatcher = searchDispatcher;
50    }
51    }