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.businessobject;
017    
018    import java.util.LinkedHashMap;
019    
020    import org.kuali.rice.kns.bo.TransientBusinessObjectBase;
021    import org.kuali.rice.kns.util.KualiDecimal;
022    
023    public class RecurringCashTransferTransactionDocumentExceptionReportLine extends TransactionDocumentForReportLineBase {
024    
025        private String sourceKemid;
026        private String transferNumber;
027        private String targetSeqNumber;
028        
029        public RecurringCashTransferTransactionDocumentExceptionReportLine() {
030            this("", "", "", "");
031        }
032        
033        
034        public RecurringCashTransferTransactionDocumentExceptionReportLine(String documentType, String sourceKemid, String transferNumber, String targetSeqNumber) {
035            this.documentType = documentType;
036            this.sourceKemid = sourceKemid;
037            this.transferNumber = transferNumber;
038            this.targetSeqNumber = targetSeqNumber;
039            
040        }
041    
042    
043        public String getSourceKemid() {
044            return sourceKemid;
045        }
046    
047    
048        public void setSourceKemid(String sourceKemid) {
049            this.sourceKemid = sourceKemid;
050        }
051    
052    
053        public String getTransferNumber() {
054            return transferNumber;
055        }
056    
057    
058        public void setTransferNumber(String transferNumber) {
059            this.transferNumber = transferNumber;
060        }
061    
062    
063        public String getTargetSeqNumber() {
064            return targetSeqNumber;
065        }
066    
067    
068        public void setTargetSeqNumber(String targetSeqNumber) {
069            this.targetSeqNumber = targetSeqNumber;
070        }
071    }