Clover Coverage Report - Kuali Student 1.2.1-SNAPSHOT (Aggregated)
Coverage timestamp: Wed Nov 2 2011 04:03:58 EST
0   19   0   -
0   11   -   0
0     -  
1    
 
  DependencyAnalysisRpcService       Line # 11 0 - 0 0 - -1.0
 
No Tests
 
1    package org.kuali.student.lum.lu.ui.dependency.client.service;
2   
3    import java.util.List;
4   
5    import org.kuali.student.lum.program.dto.ProgramRequirementInfo;
6   
7    import com.google.gwt.user.client.rpc.RemoteService;
8    import com.google.gwt.user.client.rpc.RemoteServiceRelativePath;
9   
10    @RemoteServiceRelativePath("rpcservices/DependencyAnalysisRpcService")
 
11    public interface DependencyAnalysisRpcService extends RemoteService{
12   
13    public String getRequirementComponentNL(String reqComponentId) throws Exception;
14   
15    public List<String> getRequirementComponentNL(List<String> reqComponentIds) throws Exception;
16   
17    public ProgramRequirementInfo getProgramRequirement(String reqId) throws Exception;
18   
19    }