/*
* $Id: OrderManagerBean.java 19191 2010-08-25 21:05:23Z tcarlson $
* --------------------------------------------------------------------------------------
* Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.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.test.integration.spring.events;
import org.mule.module.spring.events.MuleApplicationEvent;
import org.mule.module.spring.events.MuleSubscriptionEventListener;
import org.springframework.context.ApplicationEvent;
/**
* <code>OrderManagerBean</code> receives Order beans from Mule and dispatches
* processed results back through Mule via the applicationContext
*/
public class OrderManagerBean extends TestMuleEventBean
implements OrderManager, MuleSubscriptionEventListener
{
private String[] subscriptions;
public void onApplicationEvent(ApplicationEvent event)
{
super.onApplicationEvent(event);
// Get the order
Order order = (Order)event.getSource();
String result = processOrder(order);
// Cast the event to a Mule event, we'll use this to get the AppContext
MuleApplicationEvent muleEvent = (MuleApplicationEvent)event;
// Create a new DefaultMuleEvent. This will be sent to the replyTo
// address
MuleApplicationEvent returnEvent = null;
returnEvent = new MuleApplicationEvent(result, "jms://processed.queue");
// Call publish on the application context, Mule will do the rest
muleEvent.getApplicationContext().publishEvent(returnEvent);
}
public String processOrder(Order order)
{
// Do some processing...
return "Order '" + order.getOrder() + "' Processed";
}
public String[] getSubscriptions()
{
return subscriptions;
}
public void setSubscriptions(String[] subscriptions)
{
this.subscriptions = subscriptions;
}
}