All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.jetty.jndi.java.javaURLContextFactory Maven / Gradle / Ivy

There is a newer version: 11.0.0.beta1
Show newest version
// ========================================================================
// Copyright (c) 1999-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.jndi.java;

import java.util.Hashtable;

import javax.naming.Context;
import javax.naming.Name;
import javax.naming.NamingException;
import javax.naming.spi.ObjectFactory;

import org.eclipse.jetty.util.log.Log;


/** javaURLContextFactory
 * 

This is the URL context factory for the java: URL. * *

Notes

*

* *

Usage

*
 */
/*
* 
* * @see * * * @version 1.0 */ public class javaURLContextFactory implements ObjectFactory { /** * Either return a new context or the resolution of a url. * * @param url an Object value * @param name a Name value * @param ctx a Context value * @param env a Hashtable value * @return a new context or the resolved object for the url * @exception Exception if an error occurs */ public Object getObjectInstance(Object url, Name name, Context ctx, Hashtable env) throws Exception { // null object means return a root context for doing resolutions if (url == null) { if(Log.isDebugEnabled())Log.debug(">>> new root context requested "); return new javaRootURLContext(env); } // return the resolution of the url if (url instanceof String) { if(Log.isDebugEnabled())Log.debug(">>> resolution of url "+url+" requested"); Context rootctx = new javaRootURLContext (env); return rootctx.lookup ((String)url); } // return the resolution of at least one of the urls if (url instanceof String[]) { if(Log.isDebugEnabled())Log.debug(">>> resolution of array of urls requested"); String[] urls = (String[])url; Context rootctx = new javaRootURLContext (env); Object object = null; NamingException e = null; for (int i=0;(i< urls.length) && (object == null); i++) { try { object = rootctx.lookup (urls[i]); } catch (NamingException x) { e = x; } } if (object == null) throw e; else return object; } if(Log.isDebugEnabled())Log.debug(">>> No idea what to do, so return a new root context anyway"); return new javaRootURLContext (env); } };




© 2015 - 2024 Weber Informatics LLC | Privacy Policy