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.tck.testmodels.mule;
8   
9   import org.mule.routing.SimpleCollectionAggregator;
10  
11  
12  /**
13   * <code>TestResponseAggregator</code> is a mock response Agrregator object used for
14   * testing configuration
15   */
16  public class TestResponseAggregator extends SimpleCollectionAggregator
17  {
18      private String testProperty;
19  
20      public String getTestProperty()
21      {
22          return testProperty;
23      }
24  
25      public void setTestProperty(String testProperty)
26      {
27          this.testProperty = testProperty;
28      }
29  }