1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
package org.mule.examples.loanbroker.messages; |
12 | |
|
13 | |
import org.mule.examples.loanbroker.bank.Bank; |
14 | |
|
15 | |
import java.io.Serializable; |
16 | |
|
17 | |
|
18 | |
|
19 | |
|
20 | |
|
21 | |
public class LoanBrokerQuoteRequest implements Serializable |
22 | |
{ |
23 | |
|
24 | |
|
25 | |
|
26 | |
private static final long serialVersionUID = 46866005259682607L; |
27 | |
|
28 | |
|
29 | |
private CustomerQuoteRequest customerRequest; |
30 | |
|
31 | |
|
32 | |
private CreditProfile creditProfile; |
33 | |
|
34 | |
|
35 | |
private Bank[] lenders; |
36 | |
|
37 | |
|
38 | |
private LoanQuote loanQuote; |
39 | |
|
40 | |
public LoanBrokerQuoteRequest() |
41 | |
{ |
42 | 0 | super(); |
43 | 0 | } |
44 | |
|
45 | |
public Bank[] getLenders() |
46 | |
{ |
47 | 0 | return lenders; |
48 | |
} |
49 | |
|
50 | |
public void setLenders(Bank[] lenders) |
51 | |
{ |
52 | 0 | this.lenders = lenders; |
53 | 0 | } |
54 | |
|
55 | |
public CustomerQuoteRequest getCustomerRequest() |
56 | |
{ |
57 | 0 | return customerRequest; |
58 | |
} |
59 | |
|
60 | |
public void setCustomerRequest(CustomerQuoteRequest customerRequest) |
61 | |
{ |
62 | 0 | this.customerRequest = customerRequest; |
63 | 0 | } |
64 | |
|
65 | |
public CreditProfile getCreditProfile() |
66 | |
{ |
67 | 0 | return creditProfile; |
68 | |
} |
69 | |
|
70 | |
public void setCreditProfile(CreditProfile creditProfile) |
71 | |
{ |
72 | 0 | this.creditProfile = creditProfile; |
73 | 0 | } |
74 | |
|
75 | |
public LoanQuote getLoanQuote() |
76 | |
{ |
77 | 0 | return loanQuote; |
78 | |
} |
79 | |
|
80 | |
public void setLoanQuote(LoanQuote loanQuote) |
81 | |
{ |
82 | 0 | this.loanQuote = loanQuote; |
83 | 0 | } |
84 | |
} |