Coverage Report - org.kuali.student.common.ui.client.service.MessagesRpcServiceAsync
 
Classes in this File Line Coverage Branch Coverage Complexity
MessagesRpcServiceAsync
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 org.kuali.student.common.messages.dto.LocaleKeyList;
 19  
 import org.kuali.student.common.messages.dto.Message;
 20  
 import org.kuali.student.common.messages.dto.MessageGroupKeyList;
 21  
 import org.kuali.student.common.messages.dto.MessageList;
 22  
 
 23  
 import com.google.gwt.user.client.rpc.AsyncCallback;
 24  
 
 25  
 public interface MessagesRpcServiceAsync {
 26  
     public void getLocales(AsyncCallback<LocaleKeyList> callback);
 27  
 
 28  
     public void getMessageGroups(AsyncCallback<MessageGroupKeyList> callback);
 29  
 
 30  
     public void getMessage(
 31  
             String localeKey, 
 32  
             String messageGroupKey, 
 33  
             String messageKey, 
 34  
             AsyncCallback<Message> callback);
 35  
     
 36  
     public void getMessages(
 37  
             String localeKey, 
 38  
             String messageGroupKey, 
 39  
             AsyncCallback<MessageList> callback);
 40  
     
 41  
     public void getMessagesByGroups(
 42  
             String localeKey, 
 43  
             MessageGroupKeyList messageGroupKeyList, 
 44  
             AsyncCallback<MessageList> callback);
 45  
     
 46  
     public void updateMessage(
 47  
             String localeKey, 
 48  
             String messageGroupKey, 
 49  
             String messageKey,
 50  
             Message messageInfo, 
 51  
             AsyncCallback<Message> callback);
 52  
     
 53  
     public void addMessage(Message messageInfo, 
 54  
             AsyncCallback<Message> callback);
 55  
 }