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.RemoteServiceRelativePath; |
19 | |
|
20 | |
import org.kuali.student.common.dto.StatusInfo; |
21 | |
import org.kuali.student.common.ui.client.service.BaseDataOrchestrationRpcService; |
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 | |
@RemoteServiceRelativePath("rpcservices/LoCategoryRpcService") |
34 | |
public interface LoCategoryRpcService extends BaseDataOrchestrationRpcService { |
35 | |
|
36 | |
public List<LoCategoryInfo> getLoCategories(String loRepositoryKey); |
37 | |
public StatusInfo deleteLoCategory(String loCategoryId); |
38 | |
|
39 | |
public List<LoCategoryTypeInfo> getLoCategoryTypes(); |
40 | |
|
41 | |
public LoCategoryTypeInfo getLoCategoryType(String loCategoryTypeKey); |
42 | |
|
43 | |
} |