Coverage Report - org.kuali.student.r2.common.util.ContextUtils
 
Classes in this File Line Coverage Branch Coverage Complexity
ContextUtils
0%
0/6
0%
0/2
2
 
 1  
 package org.kuali.student.r2.common.util;
 2  
 
 3  
 import org.kuali.rice.krad.UserSession;
 4  
 import org.kuali.rice.krad.util.GlobalVariables;
 5  
 import org.kuali.student.r2.common.dto.ContextInfo;
 6  
 
 7  
 /**
 8  
  * 
 9  
  *  This is a library of utility methods that can be used when working with the context info. 
 10  
  * 
 11  
  * @author Kuali Rice Team (kuali-rice@googlegroups.com)
 12  
  *
 13  
  */
 14  0
 public class ContextUtils {
 15  
     
 16  
     /**
 17  
      * 
 18  
      * Create a new instance of ContextInfo.
 19  
      * 
 20  
      * @return
 21  
      */
 22  
     public static ContextInfo getContextInfo(){
 23  0
         ContextInfo contextInfo = new ContextInfo();
 24  0
         UserSession userSession = GlobalVariables.getUserSession();
 25  0
         if (userSession != null) {
 26  0
             contextInfo.setPrincipalId(userSession.getPrincipalId());
 27  
         }
 28  
 
 29  0
         return contextInfo;
 30  
     }
 31  
 
 32  
 }