1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.lum.common.client.lo.rpc; |
17 | |
|
18 | |
import com.google.gwt.user.client.rpc.AsyncCallback; |
19 | |
|
20 | |
import org.kuali.student.common.dto.StatusInfo; |
21 | |
import org.kuali.student.common.ui.client.service.BaseDataOrchestrationRpcServiceAsync; |
22 | |
import org.kuali.student.lum.lo.dto.LoCategoryInfo; |
23 | |
import org.kuali.student.lum.lo.dto.LoCategoryTypeInfo; |
24 | |
import org.kuali.student.lum.lo.dto.LoInfo; |
25 | |
|
26 | |
import java.util.List; |
27 | |
|
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
public interface LoCategoryRpcServiceAsync extends BaseDataOrchestrationRpcServiceAsync{ |
35 | |
|
36 | |
public void deleteLoCategory(String loCategoryId,AsyncCallback<StatusInfo> callback); |
37 | |
|
38 | |
public void getLoCategoryTypes( AsyncCallback<List<LoCategoryTypeInfo>> callback); |
39 | |
public void getLoCategoryType(String loCategoryTypeKey, AsyncCallback<LoCategoryTypeInfo> callback ); |
40 | |
public void getLoCategories(String loRepositoryKey,AsyncCallback<List<LoCategoryInfo>> callback); |
41 | |
|
42 | |
|
43 | |
} |