LetterOfCreditDetails.java

package com.tradecloud.domain.party;

import javax.persistence.Embeddable;
import java.io.Serializable;

@Embeddable
public class LetterOfCreditDetails implements Serializable {

    private boolean templateRequired;
    private boolean templateIntegrated;
    private boolean showTenorTerms;
    private boolean showAmountSpecification;

    public boolean isShowAmountSpecification() {
        return showAmountSpecification;
    }

    public void setShowAmountSpecification(boolean showAmountSpecification) {
        this.showAmountSpecification = showAmountSpecification;
    }

    public boolean isShowTenorTerms() {
        return showTenorTerms;
    }

    public void setShowTenorTerms(boolean showTenorTerms) {
        this.showTenorTerms = showTenorTerms;
    }

    public boolean isTemplateRequired() {
        return templateRequired;
    }

    public void setTemplateRequired(boolean templateRequired) {
        this.templateRequired = templateRequired;
    }

    public boolean isTemplateIntegrated() {
        return templateIntegrated;
    }

    public void setTemplateIntegrated(boolean templateIntegrated) {
        this.templateIntegrated = templateIntegrated;
    }
}