Coverage Report - org.kuali.student.r2.common.util.constants.CommentServiceConstants
 
Classes in this File Line Coverage Branch Coverage Complexity
CommentServiceConstants
0%
0/3
N/A
0
 
 1  
 package org.kuali.student.r2.common.util.constants;
 2  
 
 3  
 import org.kuali.student.r2.common.constants.CommonServiceConstants;
 4  
 import org.kuali.student.r2.core.comment.dto.CommentInfo;
 5  
 import org.kuali.student.r2.core.comment.dto.TagInfo;
 6  
 
 7  
 /**
 8  
  * This class holds the constants used by the Comment service
 9  
  *
 10  
  * @Version 2.0
 11  
  * @Author Sri komandur@uw.edu
 12  
  *
 13  
  */
 14  0
 public class CommentServiceConstants {
 15  
     /**
 16  
      * Reference Object URI's
 17  
      */
 18  
     public static final String NAMESPACE = CommonServiceConstants.REF_OBJECT_URI_GLOBAL_PREFIX + "comment";
 19  0
     public static final String REF_OBJECT_URI_COMMENT = NAMESPACE + "/" + CommentInfo.class.getSimpleName();
 20  0
     public static final String REF_OBJECT_URI_TAG = NAMESPACE + "/" + TagInfo.class.getSimpleName();
 21  
 }