View Javadoc

1   /*
2    * $Id: MuleConnection.java 10961 2008-02-22 19:01:02Z 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.module.jca;
12  
13  import org.mule.api.MuleException;
14  import org.mule.api.MuleMessage;
15  
16  import java.util.Map;
17  
18  import javax.resource.ResourceException;
19  
20  /**
21   * <code>MuleConnection</code> defines the client connection methods for the JCA
22   * CCI contract
23   */
24  public interface MuleConnection
25  {
26      void dispatch(String url, Object payload, Map messageProperties) throws MuleException;
27  
28      MuleMessage request(String url, long timeout) throws MuleException;
29  
30      MuleManagedConnection getManagedConnection();
31  
32      void close() throws ResourceException;
33  
34      void associateConnection(MuleManagedConnection newMc) throws ResourceException;
35  
36      MuleMessage send(String url, Object payload, Map messageProperties) throws MuleException;
37  }