Package org.mifosplatform.portfolio.loanaccount.guarantor.exception

Examples of org.mifosplatform.portfolio.loanaccount.guarantor.exception.InvalidGuarantorException


            this.clientRepositoryWrapper.findOneWithNotFoundDetection(guarantor.getEntityId());
            // validate that the client is not set as a self guarantor
            if (guarantor.getClientId() != null) {
                if (guarantor.getClientId().equals(guarantor.getEntityId())) {
                    //
                    throw new InvalidGuarantorException(guarantor.getEntityId(), guarantor.getLoanId());
                }
            }
        } else if (guarantor.isExistingEmployee()) {
            this.staffRepositoryWrapper.findOneWithNotFoundDetection(guarantor.getEntityId());
        }
View Full Code Here

TOP

Related Classes of org.mifosplatform.portfolio.loanaccount.guarantor.exception.InvalidGuarantorException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.