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.transport.tcp.integration;
8   
9   import java.io.Serializable;
10  
11  public class MessageObject implements Serializable
12  {
13      private static final long serialVersionUID = 6623028039115997808L;
14      public int i;
15      public String s;
16      public boolean b;
17  
18      public MessageObject(int i, String s, boolean b)
19      {
20          this.i = i;
21          this.s = s;
22          this.b = b;
23      }
24  }