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   public class NonSerializableMessageObject
10  {
11      public int i;
12      public String s;
13      public boolean b;
14  
15      public NonSerializableMessageObject(int i, String s, boolean b)
16      {
17          this.i = i;
18          this.s = s;
19          this.b = b;
20      }
21  }