| 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 |  |  import org.kuali.student.common.ui.client.service.BaseDataOrchestrationRpcService; | 
  | 20 |  |  import org.kuali.student.core.dto.StatusInfo; | 
  | 21 |  |  import org.kuali.student.lum.lo.dto.LoCategoryInfo; | 
  | 22 |  |  import org.kuali.student.lum.lo.dto.LoCategoryTypeInfo; | 
  | 23 |  |  import org.kuali.student.lum.lo.dto.LoInfo; | 
  | 24 |  |   | 
  | 25 |  |  import java.util.List; | 
  | 26 |  |   | 
  | 27 |  |   | 
  | 28 |  |   | 
  | 29 |  |   | 
  | 30 |  |   | 
  | 31 |  |   | 
  | 32 |  |  @RemoteServiceRelativePath("rpcservices/LoCategoryRpcService") | 
  | 33 |  |  public interface LoCategoryRpcService extends BaseDataOrchestrationRpcService { | 
  | 34 |  |   | 
  | 35 |  |      public List<LoCategoryInfo> getLoCategories(String loRepositoryKey); | 
  | 36 |  |      public StatusInfo deleteLoCategory(String loCategoryId); | 
  | 37 |  |   | 
  | 38 |  |      public List<LoCategoryTypeInfo> getLoCategoryTypes(); | 
  | 39 |  |   | 
  | 40 |  |      public LoCategoryTypeInfo getLoCategoryType(String loCategoryTypeKey); | 
  | 41 |  |   | 
  | 42 |  |  } |