Coverage Report - org.kuali.rice.kim.api.identity.affiliation.EntityAffiliationContract
 
Classes in this File Line Coverage Branch Coverage Complexity
EntityAffiliationContract
N/A
N/A
1
 
 1  
 package org.kuali.rice.kim.api.identity.affiliation;
 2  
 
 3  
 import org.kuali.rice.core.api.mo.common.Defaultable;
 4  
 import org.kuali.rice.core.api.mo.common.GloballyUnique;
 5  
 import org.kuali.rice.core.api.mo.common.Identifiable;
 6  
 import org.kuali.rice.core.api.mo.common.Versioned;
 7  
 import org.kuali.rice.core.api.mo.common.active.Inactivatable;
 8  
 import org.kuali.rice.kim.api.identity.TypeContract;
 9  
 
 10  
 public interface EntityAffiliationContract extends Versioned, GloballyUnique, Defaultable, Inactivatable, Identifiable {
 11  
 
 12  
     /**
 13  
      * Gets this id of the parent identity object.
 14  
      * @return the identity id for this {@link EntityAddressContract}
 15  
      */
 16  
     String getEntityId();
 17  
 
 18  
         /**
 19  
      * Gets this {@link KimEntityAffiliation}'s type.
 20  
      * @return the type for this {@link KimEntityAffiliation}, or null if none has been assigned.
 21  
      */
 22  
         EntityAffiliationTypeContract getAffiliationType();
 23  
 
 24  
         /**
 25  
      * Gets this {@link KimEntityAffiliation}'s campus code.
 26  
      * @return the campus code for this {@link KimEntityAffiliation}, or null if none has been assigned.
 27  
      */
 28  
         String getCampusCode();
 29  
 }