1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
package org.mule.transport.multicast.config; |
8 | |
|
9 | |
import org.mule.config.spring.handlers.AbstractMuleNamespaceHandler; |
10 | |
import org.mule.endpoint.URIBuilder; |
11 | |
import org.mule.transport.multicast.MulticastConnector; |
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | 0 | public class MulticastNamespaceHandler extends AbstractMuleNamespaceHandler |
18 | |
{ |
19 | |
|
20 | |
public void init() |
21 | |
{ |
22 | 0 | registerStandardTransportEndpoints(MulticastConnector.MULTICAST, URIBuilder.SOCKET_ATTRIBUTES); |
23 | 0 | registerConnectorDefinitionParser(MulticastConnector.class); |
24 | 0 | } |
25 | |
|
26 | |
} |