001    /*******************************************************************************
002     * Copyright (C) PicoContainer Organization. All rights reserved.
003     * --------------------------------------------------------------------------
004     * The software in this package is published under the terms of the BSD style
005     * license a copy of which has been included with this distribution in the
006     * LICENSE.txt file.
007     ******************************************************************************/
008    package org.picocontainer.web;
009    
010    import org.picocontainer.MutablePicoContainer;
011    import org.picocontainer.behaviors.Storing;
012    
013    public class ApplicationContainerHolder extends ContainerHolder {
014        public ApplicationContainerHolder(MutablePicoContainer container) {
015            super(container);
016        }
017    }