You create the interfaces to specify what data can be passed between the loan application components.
Name | Component | Purpose |
---|---|---|
mainProcessInterface | mainProcess |
|
LoanLimitsRuleInterface | LoanLimits |
|
CreditCheckInterface | CreditCheck |
|
FollowUpHTInterface | FollowUpDeclinedApp |
|
CompleteLoanHTInterface | CompleteTheLoan |
|
ProcessAppHTInterface | ProcessTheApplication |
|
mainProcessInterface is the connection between the stand-alone references and the mainProcess component. It has the applyOnline operation which receives the loan request and responds with a message based on the status of the loan application.
LoanLimitsRuleInterface is the connection between the mainProcess component and the LoanLimits rule group. LoanLimitsRuleInterface has the checkCredit and autoapproval operations. The checkCredit operation is involved in determining an applicant's credit score. The autoapproval operation takes an application and indicates whether it should be approved outright.
CreditCheckInterface is the connection between the LoanLimits rule group and the CreditCheck component. CreditCheckInterface has the checkCredit operation, which returns the credit score of the applicant, identified by his or her taxPayerId.
FollowUpHTInterface is the connection between the mainProcess component and the FollowUpDeclinedApp human task. FollowUpHTInterface has the FollowUpDeclinedApp operation. You use this interface for when a loan application needs to be reviewed after it is declined.
CompleteLoanHTInterface is the connection between the mainProcess component and the CompleteTheLoan human task. CompleteLoanHTInterface has the CompleteTheLoan operation. You use this interface when a loan application needs to be reviewed after it is completed.
ProcessAppHTInterface is the connection between the mainProcess component and the ProcessTheApplication human task. ProcessAppHTInterface is an interface with the ProcessTheApplication operation. You use this interface when an application needs to be manually processed and approved.