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.routing; 8 9 import java.io.Serializable; 10 11 /** 12 * Simple Custom Serializable object to check that Custom Objects Can Actually be 13 * Chunked 14 */ 15 class SimpleSerializableObject implements Serializable 16 { 17 private static final long serialVersionUID = 4705305160224612898L; 18 public String s; 19 public boolean b; 20 public int i; 21 22 public SimpleSerializableObject(String s, boolean b, int i) 23 { 24 this.s = s; 25 this.b = b; 26 this.i = i; 27 } 28 }