1   /*
2    * $Id: SimpleStreamingBean.java 11562 2008-04-10 23:46:08Z dfeist $
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.streaming;
12  
13  import java.io.IOException;
14  import java.io.InputStream;
15  
16  /**
17   * A simple bridge service for testing entry point resolution
18   */
19  public class SimpleStreamingBean
20  {
21      public InputStream doit(InputStream in) throws IOException
22      {
23          return in;
24      }
25  }