1 /*
2 * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com
3 * The software in this package is published under the terms of the CPAL v1.0
4 * license, a copy of which has been included with this distribution in the
5 * LICENSE.txt file.
6 */
7 package org.mule.transport.jnp;
8
9 import org.mule.api.MuleContext;
10 import org.mule.transport.rmi.RmiConnector;
11
12 /**
13 * <code>JnpConnector</code> uses the Java Naming protocol to bind to remote
14 * objects
15 */
16 public class JnpConnector extends RmiConnector
17 {
18
19 public static final String JNP = "jnp";
20
21 public JnpConnector(MuleContext context)
22 {
23 super(context);
24 }
25
26 public String getProtocol()
27 {
28 return JNP;
29 }
30
31 }