1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
package org.mule.transport.sftp; |
8 | |
|
9 | |
import org.mule.transport.AbstractMessageDispatcherFactory; |
10 | |
import org.mule.api.MuleException; |
11 | |
import org.mule.api.endpoint.OutboundEndpoint; |
12 | |
import org.mule.api.transport.MessageDispatcher; |
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | 0 | public class SftpMessageDispatcherFactory extends AbstractMessageDispatcherFactory |
18 | |
{ |
19 | |
|
20 | |
public MessageDispatcher create(OutboundEndpoint endpoint) throws MuleException |
21 | |
{ |
22 | 0 | return new SftpMessageDispatcher(endpoint); |
23 | |
} |
24 | |
|
25 | |
} |