Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/Link.java')
-rw-r--r--jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/Link.java43
1 files changed, 43 insertions, 0 deletions
diff --git a/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/Link.java b/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/Link.java
new file mode 100644
index 0000000000..06482a6785
--- /dev/null
+++ b/jetty-plus/src/main/java/org/eclipse/jetty/plus/jndi/Link.java
@@ -0,0 +1,43 @@
+// ========================================================================
+// Copyright (c) 2004-2009 Mort Bay Consulting Pty. Ltd.
+// ------------------------------------------------------------------------
+// All rights reserved. This program and the accompanying materials
+// are made available under the terms of the Eclipse Public License v1.0
+// and Apache License v2.0 which accompanies this distribution.
+// The Eclipse Public License is available at
+// http://www.eclipse.org/legal/epl-v10.html
+// The Apache License v2.0 is available at
+// http://www.opensource.org/licenses/apache2.0.php
+// You may elect to redistribute this code under either of these licenses.
+// ========================================================================
+
+package org.eclipse.jetty.plus.jndi;
+
+import javax.naming.NamingException;
+
+
+
+public class Link extends NamingEntry
+{
+
+ public Link(Object scope, String jndiName, Object object) throws NamingException
+ {
+ //jndiName is the name according to the web.xml
+ //objectToBind is the name in the environment
+ super(scope, jndiName, object);
+ }
+
+ public Link (String jndiName, Object object) throws NamingException
+ {
+ super(null, jndiName, object);
+ }
+
+
+ public void bindToENC(String localName) throws NamingException
+ {
+ throw new UnsupportedOperationException("Method not supported for Link objects");
+ }
+
+
+
+}

Back to the top