Skip to content

Commit

Permalink
Move Concurrent bean store
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@1708 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Feb 25, 2009
1 parent fe64836 commit dac2873
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
Expand Up @@ -15,17 +15,14 @@
* limitations under the License.
*/

package org.jboss.webbeans.context.beanstore;
package org.jboss.webbeans.context.api.helpers;

import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

import javax.context.Contextual;

import org.jboss.webbeans.context.api.BeanStore;
import org.jboss.webbeans.context.api.helpers.AbstractMapBackedBeanStore;
import org.jboss.webbeans.log.LogProvider;
import org.jboss.webbeans.log.Logging;

/**
* A BeanStore that uses a HashMap as backing storage
Expand All @@ -34,7 +31,6 @@
*/
public class ConcurrentHashMapBeanStore extends AbstractMapBackedBeanStore implements BeanStore
{
private static LogProvider log = Logging.getLogProvider(ConcurrentHashMapBeanStore.class);

// The backing map
protected Map<Contextual<? extends Object>, Object> delegate;
Expand Down
Expand Up @@ -20,7 +20,7 @@

import org.jboss.webbeans.bootstrap.WebBeansBootstrap;
import org.jboss.webbeans.context.api.BeanStore;
import org.jboss.webbeans.context.beanstore.ConcurrentHashMapBeanStore;
import org.jboss.webbeans.context.api.helpers.ConcurrentHashMapBeanStore;
import org.jboss.webbeans.ejb.spi.EjbResolver;
import org.jboss.webbeans.resources.spi.ResourceLoader;
import org.jboss.webbeans.servlet.AbstractLifecycle;
Expand Down
Expand Up @@ -24,7 +24,7 @@
import org.jboss.webbeans.CurrentManager;
import org.jboss.webbeans.context.SessionContext;
import org.jboss.webbeans.context.api.BeanStore;
import org.jboss.webbeans.context.beanstore.ConcurrentHashMapBeanStore;
import org.jboss.webbeans.context.api.helpers.ConcurrentHashMapBeanStore;
import org.jboss.webbeans.log.LogProvider;
import org.jboss.webbeans.log.Logging;

Expand Down
Expand Up @@ -24,7 +24,7 @@
import org.jboss.webbeans.CurrentManager;
import org.jboss.webbeans.context.SessionContext;
import org.jboss.webbeans.context.api.BeanStore;
import org.jboss.webbeans.context.beanstore.ConcurrentHashMapBeanStore;
import org.jboss.webbeans.context.api.helpers.ConcurrentHashMapBeanStore;

/**
* Implementation of the Web Beans lifecycle that can react to servlet events.
Expand Down

0 comments on commit dac2873

Please sign in to comment.