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