1
2
3
4
5
6
7 package org.mule.test.integration.spring.events;
8
9 import java.io.Serializable;
10
11
12
13
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 }