/*
* $Id: PrepareLoanQuoteRequest.java 11394 2008-03-17 15:18:29Z 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.bpm.actions;
import org.mule.example.loanbroker.messages.CreditProfile;
import org.mule.example.loanbroker.messages.CustomerQuoteRequest;
import org.mule.example.loanbroker.messages.LoanBrokerQuoteRequest;
import org.mule.transport.bpm.jbpm.actions.LoggingActionHandler;
import org.jbpm.graph.exe.ExecutionContext;
/**
* Prepares a loan request for the banks based on the original customer request and the customer's
* credit profile.
*/
public class PrepareLoanQuoteRequest extends LoggingActionHandler
{
@Override
public void execute(ExecutionContext executionContext) throws Exception
{
super.execute(executionContext);
LoanBrokerQuoteRequest loanRequest = new LoanBrokerQuoteRequest();
loanRequest.setCustomerRequest((CustomerQuoteRequest) executionContext.getVariable("customerRequest"));
loanRequest.setCreditProfile((CreditProfile) executionContext.getVariable("creditProfile"));
executionContext.setVariable("loanRequest", loanRequest);
}
}
|