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    
012    public class ContainerHolder {
013    
014        private final MutablePicoContainer container;
015    
016        public ContainerHolder(MutablePicoContainer container) {
017            this.container = container;
018        }
019    
020        MutablePicoContainer getContainer() {
021            return container;
022        }
023    }