1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
package org.mule.example.loanbroker.model; |
8 | |
|
9 | |
import java.io.Serializable; |
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
public class CreditProfile implements Serializable |
15 | |
{ |
16 | |
|
17 | |
|
18 | |
|
19 | |
private static final long serialVersionUID = -5924690191061177417L; |
20 | |
|
21 | |
private int creditScore; |
22 | |
private int creditHistory; |
23 | |
|
24 | |
public CreditProfile() |
25 | |
{ |
26 | 0 | super(); |
27 | 0 | } |
28 | |
|
29 | |
public int getCreditScore() |
30 | |
{ |
31 | 0 | return creditScore; |
32 | |
} |
33 | |
|
34 | |
public void setCreditScore(int creditScore) |
35 | |
{ |
36 | 0 | this.creditScore = creditScore; |
37 | 0 | } |
38 | |
|
39 | |
public int getCreditHistory() |
40 | |
{ |
41 | 0 | return creditHistory; |
42 | |
} |
43 | |
|
44 | |
public void setCreditHistory(int creditHistory) |
45 | |
{ |
46 | 0 | this.creditHistory = creditHistory; |
47 | 0 | } |
48 | |
|
49 | |
} |