| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| AffiliatedOrg |
|
| 1.0;1 |
| 1 | /* | |
| 2 | * Copyright 2011 The Kuali Foundation Licensed under the Educational Community | |
| 3 | * License, Version 1.0 (the "License"); you may not use this file except in | |
| 4 | * compliance with the License. You may obtain a copy of the License at | |
| 5 | * http://www.opensource.org/licenses/ecl1.php Unless required by applicable law | |
| 6 | * or agreed to in writing, software distributed under the License is | |
| 7 | * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | |
| 8 | * KIND, either express or implied. See the License for the specific language | |
| 9 | * governing permissions and limitations under the License. | |
| 10 | */ | |
| 11 | package org.kuali.student.r2.lum.clu.infc; | |
| 12 | ||
| 13 | import org.kuali.student.r2.common.infc.HasEffectiveDates; | |
| 14 | import org.kuali.student.r2.common.infc.IdNamelessEntity; | |
| 15 | ||
| 16 | /** | |
| 17 | * Detailed information about the distribution of revenue by organization. | |
| 18 | * | |
| 19 | * @author nwright | |
| 20 | */ | |
| 21 | public interface AffiliatedOrg extends IdNamelessEntity, HasEffectiveDates { | |
| 22 | ||
| 23 | /** | |
| 24 | * Unique identifier for an organization. | |
| 25 | * | |
| 26 | * @name Organization Id | |
| 27 | * @readOnly | |
| 28 | * @required | |
| 29 | */ | |
| 30 | public String getOrgId(); | |
| 31 | ||
| 32 | /** | |
| 33 | * A long numeric value without a fractional component. | |
| 34 | * | |
| 35 | * @name Percentage | |
| 36 | */ | |
| 37 | public Long getPercentage(); | |
| 38 | ||
| 39 | } |