001package org.kuali.ole.deliver.bo;
002
003import org.kuali.rice.krad.bo.PersistableBusinessObjectBase;
004
005import java.math.BigDecimal;
006import java.sql.Timestamp;
007
008/**
009 * Created by vivekb on 9/15/14.
010 */
011public class OLEDeliverNotice extends PersistableBusinessObjectBase {
012    private String id;
013    private String loanId;
014    private String noticeType;
015    private Timestamp noticeToBeSendDate;
016    private BigDecimal replacementFeeAmount;
017    private String noticeSendType;
018    private String patronId;
019    private OleLoanDocument oleLoanDocument;
020
021    public String getId() {
022        return id;
023    }
024
025    public void setId(String id) {
026        this.id = id;
027    }
028
029    public String getLoanId() {
030        return loanId;
031    }
032
033    public void setLoanId(String loanId) {
034        this.loanId = loanId;
035    }
036
037    public String getNoticeType() {
038        return noticeType;
039    }
040
041    public void setNoticeType(String noticeType) {
042        this.noticeType = noticeType;
043    }
044
045    public Timestamp getNoticeToBeSendDate() {
046        return noticeToBeSendDate;
047    }
048
049    public void setNoticeToBeSendDate(Timestamp noticeToBeSendDate) {
050        this.noticeToBeSendDate = noticeToBeSendDate;
051    }
052
053    public BigDecimal getReplacementFeeAmount() {
054        return replacementFeeAmount;
055    }
056
057    public void setReplacementFeeAmount(BigDecimal replacementFeeAmount) {
058        this.replacementFeeAmount = replacementFeeAmount;
059    }
060
061    public String getNoticeSendType() {
062        return noticeSendType;
063    }
064
065    public void setNoticeSendType(String noticeSendType) {
066        this.noticeSendType = noticeSendType;
067    }
068
069    public String getPatronId() {
070        return patronId;
071    }
072
073    public void setPatronId(String patronId) {
074        this.patronId = patronId;
075    }
076
077    public OleLoanDocument getOleLoanDocument() {
078        return oleLoanDocument;
079    }
080
081    public void setOleLoanDocument(OleLoanDocument oleLoanDocument) {
082        this.oleLoanDocument = oleLoanDocument;
083    }
084}