KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mule > samples > loanbroker > esb > message > LoanQuoteRequest


1 /*
2  * $Id:LoanQuoteRequest.java 2944 2006-09-05 10:38:45 +0000 (Tue, 05 Sep 2006) tcarlson $
3  * --------------------------------------------------------------------------------------
4  * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com
5  *
6  * The software in this package is published under the terms of the MuleSource MPL
7  * license, a copy of which has been included with this distribution in the
8  * LICENSE.txt file.
9  */

10
11 package org.mule.samples.loanbroker.esb.message;
12
13 import org.mule.samples.loanbroker.esb.bank.Bank;
14
15 import java.io.Serializable JavaDoc;
16
17 /**
18  * <code>LoanQuoteRequest</code> represents a customer request for a loan through a
19  * loan broker
20  *
21  * @author <a HREF="mailto:ross.mason@symphonysoft.com">Ross Mason</a>
22  * @version $Revision:2944 $
23  */

24 public class LoanQuoteRequest implements Serializable JavaDoc
25 {
26     /**
27      * Serial version
28      */

29     private static final long serialVersionUID = 46866005259682607L;
30
31     /** The customer request */
32     private CustomerQuoteRequest customerRequest;
33
34     /** credit profile for the customer */
35     private CreditProfile creditProfile;
36
37     /** A list of lenders for this request */
38     private Bank[] lenders;
39
40     /** A loan quote from a bank */
41     private LoanQuote loanQuote;
42
43     public LoanQuoteRequest()
44     {
45         super();
46     }
47
48     public Bank[] getLenders()
49     {
50         return lenders;
51     }
52
53     public void setLenders(Bank[] lenders)
54     {
55         this.lenders = lenders;
56     }
57
58     public CustomerQuoteRequest getCustomerRequest()
59     {
60         return customerRequest;
61     }
62
63     public void setCustomerRequest(CustomerQuoteRequest customerRequest)
64     {
65         this.customerRequest = customerRequest;
66     }
67
68     public CreditProfile getCreditProfile()
69     {
70         return creditProfile;
71     }
72
73     public void setCreditProfile(CreditProfile creditProfile)
74     {
75         this.creditProfile = creditProfile;
76     }
77
78     public LoanQuote getLoanQuote()
79     {
80         return loanQuote;
81     }
82
83     public void setLoanQuote(LoanQuote loanQuote)
84     {
85         this.loanQuote = loanQuote;
86     }
87 }
88
Popular Tags