Coverage Report - org.kuali.rice.krms.api.repository.BaseAttributeContract
 
Classes in this File Line Coverage Branch Coverage Complexity
BaseAttributeContract
N/A
N/A
1
 
 1  
 package org.kuali.rice.krms.api.repository;
 2  
 
 3  
 import org.kuali.rice.core.api.mo.common.Identifiable;
 4  
 import org.kuali.rice.krms.api.repository.type.KrmsAttributeDefinitionContract;
 5  
 
 6  
 /**
 7  
  * Base interface intended for extension by other AttributeContract interfaces 
 8  
  * 
 9  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 10  
  *
 11  
  */
 12  
 public interface BaseAttributeContract extends Identifiable {
 13  
 
 14  
         /**
 15  
          * This is the id of the definition of the attribute. 
 16  
          *
 17  
          * <p>
 18  
          * It identifies the attribute definition
 19  
          * </p>
 20  
          * @return the attribute definition id.
 21  
          */
 22  
         public String getAttributeDefinitionId();
 23  
 
 24  
         /**
 25  
          * This is the value of the attribute
 26  
          * 
 27  
          * @return the value of the attribute
 28  
          */
 29  
         public String getValue();
 30  
 
 31  
         /**
 32  
          * This is the definition of the attribute
 33  
          */
 34  
         public KrmsAttributeDefinitionContract getAttributeDefinition();
 35  
 
 36  
 }