⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 selectorcontext.java

📁 Tomcat 4.1与WebServer集成组件的源代码包.
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/* * ==================================================================== * * The Apache Software License, Version 1.1 * * Copyright (c) 1999 The Apache Software Foundation.  All rights  * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright *    notice, this list of conditions and the following disclaimer.  * * 2. Redistributions in binary form must reproduce the above copyright *    notice, this list of conditions and the following disclaimer in *    the documentation and/or other materials provided with the *    distribution. * * 3. The end-user documentation included with the redistribution, if *    any, must include the following acknowlegement:   *       "This product includes software developed by the  *        Apache Software Foundation (http://www.apache.org/)." *    Alternately, this acknowlegement may appear in the software itself, *    if and wherever such third-party acknowlegements normally appear. * * 4. The names "The Jakarta Project", "Tomcat", and "Apache Software *    Foundation" must not be used to endorse or promote products derived *    from this software without prior written permission. For written  *    permission, please contact apache@apache.org. * * 5. Products derived from this software may not be called "Apache" *    nor may "Apache" appear in their names without prior written *    permission of the Apache Group. * * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * ==================================================================== * * This software consists of voluntary contributions made by many * individuals on behalf of the Apache Software Foundation.  For more * information on the Apache Software Foundation, please see * <http://www.apache.org/>. * * [Additional notices, if required by prior licensing conditions] * */ package org.apache.naming.modules.java;import java.util.Hashtable;import javax.naming.Context;import javax.naming.Name;import javax.naming.NameParser;import javax.naming.NamingEnumeration;import javax.naming.NamingException;import org.apache.tomcat.util.res.StringManager;import org.apache.naming.modules.memory.*;import org.apache.naming.core.*;/* This delegates to another context, removing a prefix.   XXX make it generic, move to core. The context thread can be   selected only once - in the java: factory, to avoid overhead.*//** * Per thread context, implementing java: like contexts. * * @author Remy Maucherat */public class SelectorContext extends BaseContext {    // -------------------------------------------------------------- Constants    /**     * Namespace URL.     */    public static final String prefix = "java:";    /**     * Namespace URL length.     */    public static final int prefixLength = prefix.length();    /**     * Initial context prefix.     */    public static final String IC_PREFIX = "IC_";    // ----------------------------------------------------------- Constructors    /**     * Builds a Catalina selector context using the given environment.     */    public SelectorContext(Hashtable env) {        super( env );    }    /**     * Builds a Catalina selector context using the given environment.     */    public SelectorContext(Hashtable env, boolean initialContext) {        this(env);        this.initialContext = initialContext;    }    // ----------------------------------------------------- Instance Variables    /**     * Environment.     */    protected Hashtable env;    /**     * The string manager for this package.     */    protected StringManager sm = StringManager.getManager("org.apache.naming.res");    /**     * Request for an initial context.     */    protected boolean initialContext = false;    // --------------------------------------------------------- Public Methods    // -------------------------------------------------------- Context Methods    public Object lookup(Name name)        throws NamingException {        // Strip the URL header        // Find the appropriate NamingContext according to the current bindings        // Execute the lookup on that context        return getBoundContext().lookup(parseName(name));    }    /**     * Retrieves the named object.     *      * @param name the name of the object to look up     * @return the object bound to name     * @exception NamingException if a naming exception is encountered     */    public Object lookup(String name)        throws NamingException {        // Strip the URL header        // Find the appropriate NamingContext according to the current bindings        // Execute the lookup on that context        return getBoundContext().lookup(parseName(name));    }    /**     * Binds a name to an object. All intermediate contexts and the target      * context (that named by all but terminal atomic component of the name)      * must already exist.     *      * @param name the name to bind; may not be empty     * @param obj the object to bind; possibly null     * @exception NameAlreadyBoundException if name is already bound     * @exception InvalidAttributesException if object did not supply all      * mandatory attributes     * @exception NamingException if a naming exception is encountered     */    public void bind(Name name, Object obj)        throws NamingException {        getBoundContext().bind(parseName(name), obj);    }    /**     * Binds a name to an object.     *      * @param name the name to bind; may not be empty     * @param obj the object to bind; possibly null     * @exception NameAlreadyBoundException if name is already bound     * @exception InvalidAttributesException if object did not supply all      * mandatory attributes     * @exception NamingException if a naming exception is encountered     */    public void bind(String name, Object obj)        throws NamingException {        getBoundContext().bind(parseName(name), obj);    }    /**     * Binds a name to an object, overwriting any existing binding. All      * intermediate contexts and the target context (that named by all but      * terminal atomic component of the name) must already exist.     * <p>     * If the object is a DirContext, any existing attributes associated with      * the name are replaced with those of the object. Otherwise, any      * existing attributes associated with the name remain unchanged.     *      * @param name the name to bind; may not be empty     * @param obj the object to bind; possibly null     * @exception InvalidAttributesException if object did not supply all      * mandatory attributes     * @exception NamingException if a naming exception is encountered     */    public void rebind(Name name, Object obj)        throws NamingException {        getBoundContext().rebind(parseName(name), obj);    }    /**     * Binds a name to an object, overwriting any existing binding.     *      * @param name the name to bind; may not be empty     * @param obj the object to bind; possibly null     * @exception InvalidAttributesException if object did not supply all      * mandatory attributes     * @exception NamingException if a naming exception is encountered     */    public void rebind(String name, Object obj)        throws NamingException {        getBoundContext().rebind(parseName(name), obj);    }    /**     * Unbinds the named object. Removes the terminal atomic name in name      * from the target context--that named by all but the terminal atomic      * part of name.     * <p>     * This method is idempotent. It succeeds even if the terminal atomic      * name is not bound in the target context, but throws      * NameNotFoundException if any of the intermediate contexts do not exist.      *      * @param name the name to bind; may not be empty     * @exception NameNotFoundException if an intermediate context does not      * exist     * @exception NamingException if a naming exception is encountered     */    public void unbind(Name name)        throws NamingException {        getBoundContext().unbind(parseName(name));    }    /**     * Unbinds the named object.     *      * @param name the name to bind; may not be empty     * @exception NameNotFoundException if an intermediate context does not      * exist     * @exception NamingException if a naming exception is encountered     */    public void unbind(String name)        throws NamingException {        getBoundContext().unbind(parseName(name));    }    /**     * Binds a new name to the object bound to an old name, and unbinds the      * old name. Both names are relative to this context. Any attributes      * associated with the old name become associated with the new name.      * Intermediate contexts of the old name are not changed.     *      * @param oldName the name of the existing binding; may not be empty     * @param newName the name of the new binding; may not be empty     * @exception NameAlreadyBoundException if newName is already bound     * @exception NamingException if a naming exception is encountered     */    public void rename(Name oldName, Name newName)        throws NamingException {        getBoundContext().rename(parseName(oldName), parseName(newName));    }    /**     * Binds a new name to the object bound to an old name, and unbinds the      * old name.     *      * @param oldName the name of the existing binding; may not be empty     * @param newName the name of the new binding; may not be empty     * @exception NameAlreadyBoundException if newName is already bound     * @exception NamingException if a naming exception is encountered     */    public void rename(String oldName, String newName)        throws NamingException {        getBoundContext().rename(parseName(oldName), parseName(newName));    }    /**     * Enumerates the names bound in the named context, along with the class      * names of objects bound to them. The contents of any subcontexts are      * not included.     * <p>     * If a binding is added to or removed from this context, its effect on      * an enumeration previously returned is undefined.     *      * @param name the name of the context to list     * @return an enumeration of the names and class names of the bindings in      * this context. Each element of the enumeration is of type NameClassPair.     * @exception NamingException if a naming exception is encountered     */    public NamingEnumeration list(Name name)        throws NamingException {        return getBoundContext().list(parseName(name));    }    /**     * Enumerates the names bound in the named context, along with the class      * names of objects bound to them.     *      * @param name the name of the context to list     * @return an enumeration of the names and class names of the bindings in      * this context. Each element of the enumeration is of type NameClassPair.     * @exception NamingException if a naming exception is encountered     */    public NamingEnumeration list(String name)        throws NamingException {        return getBoundContext().list(parseName(name));    }    /**     * Enumerates the names bound in the named context, along with the      * objects bound to them. The contents of any subcontexts are not      * included.     * <p>     * If a binding is added to or removed from this context, its effect on      * an enumeration previously returned is undefined.     *      * @param name the name of the context to list     * @return an enumeration of the bindings in this context.      * Each element of the enumeration is of type Binding.     * @exception NamingException if a naming exception is encountered     */    public NamingEnumeration listBindings(Name name)        throws NamingException {        return getBoundContext().listBindings(parseName(name));    }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -