KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > mule > samples > loanbroker > BankQuoteRequest


1 /*
2  * $Id: BankQuoteRequest.java 3798 2006-11-04 04:07:14Z aperepel $
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;
12
13 import java.io.Serializable JavaDoc;
14
15 /**
16  * <code>BankQuoteRequest</code> represents customer a request for a loan broker
17  * through a loan broker
18  *
19  * @author <a HREF="mailto:ross.mason@symphonysoft.com">Ross Mason</a>
20  * @version $Revision: 3798 $
21  */

22 public class BankQuoteRequest implements Serializable JavaDoc
23 {
24     /**
25      * Serial version
26      */

27     private static final long serialVersionUID = 8302037103569473302L;
28
29     private LoanRequest loanRequest;
30     private Bank[] lenders;
31
32     public BankQuoteRequest()
33     {
34         super();
35     }
36
37     public Bank[] getLenders()
38     {
39         return lenders;
40     }
41
42     public void setLenders(Bank[] lenders)
43     {
44         this.lenders = lenders;
45     }
46
47     public LoanRequest getLoanRequest()
48     {
49         return loanRequest;
50     }
51
52     public void setLoanRequest(LoanRequest loanRequest)
53     {
54         this.loanRequest = loanRequest;
55     }
56 }
57
Popular Tags