001    /*
002     * Copyright 2011 The Kuali Foundation.
003     * 
004     * Licensed under the Educational Community License, Version 2.0 (the "License");
005     * you may not use this file except in compliance with the License.
006     * You may obtain a copy of the License at
007     * 
008     * http://www.opensource.org/licenses/ecl2.php
009     * 
010     * Unless required by applicable law or agreed to in writing, software
011     * distributed under the License is distributed on an "AS IS" BASIS,
012     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013     * See the License for the specific language governing permissions and
014     * limitations under the License.
015     */
016    package org.kuali.kfs.module.endow.report.util;
017    
018    import org.kuali.rice.kns.util.KualiDecimal;
019    
020    /**
021     * Used to hold the KEMIDs with multiple BenefittingOrganizations data for report
022     */
023    public class KemidsWithMultipleBenefittingOrganizationsDataHolder {
024    
025        private String kemid;
026        private String campus;
027        private String chart;
028        private String organization;
029        private KualiDecimal percent;
030        
031        public String getKemid() {
032            return kemid;
033        }
034        public void setKemid(String kemid) {
035            this.kemid = kemid;
036        }
037        public String getCampus() {
038            return campus;
039        }
040        public void setCampus(String campus) {
041            this.campus = campus;
042        }
043        public String getChart() {
044            return chart;
045        }
046        public void setChart(String chart) {
047            this.chart = chart;
048        }
049        public String getOrganization() {
050            return organization;
051        }
052        public void setOrganization(String organization) {
053            this.organization = organization;
054        }
055        public KualiDecimal getPercent() {
056            return percent;
057        }
058        public void setPercent(KualiDecimal percent) {
059            this.percent = percent;
060        }
061        
062        
063    }