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