Examples of CreditReport


Examples of org.springframework.integration.samples.loanbroker.domain.CreditReport

   * @return the CreditReport for the given loan request
   */
  public CreditReport getCreditReport(LoanRequest loanRequest) {
    int creditScore = 600 + new Random().nextInt(250);
    logger.info("Credit Score: " + creditScore);
    return new CreditReport(creditScore);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.