frap129 / cs471-project

0 stars 2 forks source link

Loan Risk Calculator #15

Open AndyGabler opened 3 years ago

AndyGabler commented 3 years ago

As a loan officer, I would like a loan risk calculator that determines whether or not a student should be approved for a loan.

Acceptance Criteria User Action System Response
Officer accesses loan web page Web page prompts login
Officer logs in Web page responds with either success or failure
Officer navigates to pending loans Web page provides list of pending loans
Officer selects pending loan Web page provides details of pending loan
Officer selects "Calculate Risk" button Web page calculates the risk for approving a loan, and gives a recommendation of whether to accept or reject the loan based on that risk
TytanRock commented 3 years ago

@tbolar18 Think you can do some research on how loan risk is calculated and come up with a java algorithm to do this? The idea is that you create a method that accepts the parameters that contribute to risk (salary, collatoral, current debt, etc), and return either a double or an object that relates to the risk of the accepting a loan from them. Once you have the algorithm made, Joe or I will suck it into the backend and implement it.