1 /* 2 * $Id: SimpleSerializableObject.java 8077 2007-08-27 20:15:25Z aperepel $ 3 * -------------------------------------------------------------------------------------- 4 * Copyright (c) MuleSource, Inc. All rights reserved. http://www.mulesource.com 5 * 6 * The software in this package is published under the terms of the CPAL v1.0 7 * license, a copy of which has been included with this distribution in the 8 * LICENSE.txt file. 9 */ 10 11 package org.mule.test.integration.routing; 12 13 import java.io.Serializable; 14 15 /** 16 * Simple Custom Serializable object to check that Custom Objects Can Actually be 17 * Chunked 18 */ 19 class SimpleSerializableObject implements Serializable 20 { 21 private static final long serialVersionUID = 4705305160224612898L; 22 public String s; 23 public boolean b; 24 public int i; 25 26 public SimpleSerializableObject(String s, boolean b, int i) 27 { 28 this.s = s; 29 this.b = b; 30 this.i = i; 31 } 32 }