001 package org.kuali.student.r2.lum.course.infc;
002
003 import java.util.List;
004
005 import org.kuali.student.r2.common.infc.IdNamelessEntity;
006 import org.kuali.student.r2.lum.clu.infc.AffiliatedOrg;
007
008 public interface CourseRevenue extends IdNamelessEntity {
009 /**
010 * A code that identifies the type of the fee with which this revenue is
011 * associated with.
012 *
013 * @name Fee Type
014 */
015 public String getFeeType();
016
017 /**
018 * List of affiliated organizations.
019 *
020 * @name Affiliated Organization
021 */
022 public List<? extends AffiliatedOrg> getAffiliatedOrgs();
023 }