View Javadoc
1   /*
2    * Copyright (c) MuleSoft, Inc.  All rights reserved.  http://www.mulesoft.com
3    * The software in this package is published under the terms of the CPAL v1.0
4    * license, a copy of which has been included with this distribution in the
5    * LICENSE.txt file.
6    */
7   package org.mule.test.integration.spring.events;
8   
9   import java.io.Serializable;
10  
11  /**
12   * <code>Order</code> is a bean that gets sent back and forth between Mule and
13   * Spring.
14   */
15  
16  public class Order implements Serializable
17  {
18      private static final long serialVersionUID = -5384677758697949102L;
19  
20      private String order;
21  
22      public Order()
23      {
24          super();
25      }
26  
27      public Order(String order)
28      {
29          this.order = order;
30      }
31  
32      public String getOrder()
33      {
34          return order;
35      }
36  
37      public void setOrder(String order)
38      {
39          this.order = order;
40      }
41  
42  }