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