Coverage Report - org.kuali.student.common.ui.client.service.BaseRpcServiceAsync
 
Classes in this File Line Coverage Branch Coverage Complexity
BaseRpcServiceAsync
N/A
N/A
1
 
 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.client.service;
 17  
 
 18  
 import java.util.List;
 19  
 
 20  
 import org.kuali.student.core.dictionary.old.dto.ObjectStructure;
 21  
 import org.kuali.student.core.search.dto.SearchCriteriaTypeInfo;
 22  
 import org.kuali.student.core.search.dto.SearchRequest;
 23  
 import org.kuali.student.core.search.dto.SearchResult;
 24  
 import org.kuali.student.core.search.dto.SearchResultTypeInfo;
 25  
 import org.kuali.student.core.search.dto.SearchTypeInfo;
 26  
 
 27  
 import com.google.gwt.user.client.rpc.AsyncCallback;
 28  
 
 29  
 /**
 30  
  * Async methods for dictionary and search operations. 
 31  
  * 
 32  
  * @author Kuali Student Team
 33  
  *
 34  
  */
 35  
 public interface BaseRpcServiceAsync {
 36  
 
 37  
     public void getObjectTypes(AsyncCallback<List<String>> callback);
 38  
 
 39  
     public void getObjectStructure(String objectTypeKey, AsyncCallback<ObjectStructure> callback);
 40  
 
 41  
     void getSearchCriteriaType(String searchCriteriaTypeKey, AsyncCallback<SearchCriteriaTypeInfo> callback);
 42  
     
 43  
     void getSearchCriteriaTypes(AsyncCallback<List<SearchCriteriaTypeInfo>> callback);
 44  
     
 45  
     void getSearchResultType(String searchResultTypeKey, AsyncCallback<SearchResultTypeInfo> callback);
 46  
     
 47  
     void getSearchResultTypes(AsyncCallback<List<SearchResultTypeInfo>> callback);
 48  
     
 49  
     void getSearchType(String searchTypeKey, AsyncCallback<SearchTypeInfo> callback);
 50  
     
 51  
     void getSearchTypes(AsyncCallback<List<SearchTypeInfo>> callback);
 52  
     
 53  
     void getSearchTypesByCriteria(String searchCriteriaTypeKey, AsyncCallback<List<SearchTypeInfo>> callback);
 54  
     
 55  
     void getSearchTypesByResult(String searchResultTypeKey, AsyncCallback<List<SearchTypeInfo>> callback);
 56  
     
 57  
     public void search(SearchRequest searchRequest, AsyncCallback<SearchResult> callback);
 58  
 }