Coverage Report - org.kuali.rice.krms.api.repository.rule.RuleAttributeContract
 
Classes in this File Line Coverage Branch Coverage Complexity
RuleAttributeContract
N/A
N/A
1
 
 1  
 package org.kuali.rice.krms.api.repository.rule;
 2  
 
 3  
 import java.util.List;
 4  
 
 5  
 import org.kuali.rice.krms.api.repository.BaseAttributeContract;
 6  
 
 7  
 public interface RuleAttributeContract extends BaseAttributeContract {
 8  
 
 9  
         /**
 10  
          * This is the id of the Rule to which the attribute applies 
 11  
          *
 12  
          * <p>
 13  
          * It is a id of a Rule related to the attribute.
 14  
          * </p>
 15  
          * @return id for Rule related to the attribute.
 16  
          */
 17  
         public String getRuleId();
 18  
 
 19  
 }