org.eclipse.jetty.jndi.InitialContextFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jetty-jndi Show documentation
Show all versions of jetty-jndi Show documentation
JNDI spi impl for java namespace.
//
// ========================================================================
// Copyright (c) 1995-2021 Mort Bay Consulting Pty Ltd and others.
// ------------------------------------------------------------------------
// 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.jndi;
import java.util.Hashtable;
import java.util.Properties;
import javax.naming.CompoundName;
import javax.naming.Context;
import javax.naming.Name;
import javax.naming.NameParser;
import javax.naming.NamingException;
import org.eclipse.jetty.jndi.local.localContextRoot;
import org.eclipse.jetty.util.log.Log;
import org.eclipse.jetty.util.log.Logger;
/**
* InitialContextFactory.java
*
* Factory for the default InitialContext.
* Created: Tue Jul 1 19:08:08 2003
*
* @version 1.0
*/
public class InitialContextFactory implements javax.naming.spi.InitialContextFactory
{
private static final Logger LOG = Log.getLogger(InitialContextFactory.class);
public static class DefaultParser implements NameParser
{
static Properties syntax = new Properties();
static
{
syntax.put("jndi.syntax.direction", "left_to_right");
syntax.put("jndi.syntax.separator", "/");
syntax.put("jndi.syntax.ignorecase", "false");
}
@Override
public Name parse(String name)
throws NamingException
{
return new CompoundName(name, syntax);
}
}
/**
* Get Context that has access to default Namespace.
* This method won't be called if a name URL beginning
* with java: is passed to an InitialContext.
*
* @param env a Hashtable
value
* @return a Context
value
* @see org.eclipse.jetty.jndi.java.javaURLContextFactory
*/
@Override
public Context getInitialContext(Hashtable env)
{
if (LOG.isDebugEnabled())
LOG.debug("InitialContextFactory.getInitialContext()");
Context ctx = new localContextRoot(env);
if (LOG.isDebugEnabled())
LOG.debug("Created initial context delegate for local namespace:" + ctx);
return ctx;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy