loanbrokerquoterequest.java
来自「提供ESB 应用mule源代码 提供ESB 应用mule源代码」· Java 代码 · 共 85 行
JAVA
85 行
/* * $Id:LoanQuoteRequest.java 2944 2006-09-05 10:38:45 +0000 (Tue, 05 Sep 2006) tcarlson $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.example.loanbroker.messages;import org.mule.example.loanbroker.bank.Bank;import java.io.Serializable;/** * <code>LoanQuoteRequest</code> represents a customer request for a loan through a * loan broker */public class LoanBrokerQuoteRequest implements Serializable{ /** * Serial version */ private static final long serialVersionUID = 46866005259682607L; /** The customer request */ private CustomerQuoteRequest customerRequest; /** credit profile for the customer */ private CreditProfile creditProfile; /** A list of lenders for this request */ private Bank[] lenders; /** A loan quote from a bank */ private LoanQuote loanQuote; public LoanBrokerQuoteRequest() { super(); } public Bank[] getLenders() { return lenders; } public void setLenders(Bank[] lenders) { this.lenders = lenders; } public CustomerQuoteRequest getCustomerRequest() { return customerRequest; } public void setCustomerRequest(CustomerQuoteRequest customerRequest) { this.customerRequest = customerRequest; } public CreditProfile getCreditProfile() { return creditProfile; } public void setCreditProfile(CreditProfile creditProfile) { this.creditProfile = creditProfile; } public LoanQuote getLoanQuote() { return loanQuote; } public void setLoanQuote(LoanQuote loanQuote) { this.loanQuote = loanQuote; }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?