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.api.MuleContext;
10  import org.mule.api.MuleException;
11  import org.mule.api.component.JavaComponent;
12  import org.mule.api.construct.FlowConstruct;
13  import org.mule.api.model.EntryPointResolverSet;
14  import org.mule.component.DefaultComponentLifecycleAdapter;
15  
16  /** <code>TestComponentLifecycleAdapter</code> TODO document */
17  public class TestComponentLifecycleAdapter extends DefaultComponentLifecycleAdapter
18  {
19      public TestComponentLifecycleAdapter(Object pojoService,
20                                           JavaComponent service,
21                                           FlowConstruct flowConstruct,
22                                           MuleContext muleContext) throws MuleException
23      {
24          super(pojoService, service, flowConstruct, muleContext);
25      }
26  
27      public TestComponentLifecycleAdapter(Object pojoService,
28                                         JavaComponent service,
29                                         FlowConstruct flowConstruct,
30                                         EntryPointResolverSet epResolver,
31                                         MuleContext muleContext) throws MuleException
32      {
33          super(pojoService, service, flowConstruct, epResolver, muleContext);
34      }
35  
36  }