blob: 8ec7a4e707c89da63200411655f54b8da1ac4c8e [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.myfaces.extensions.cdi.core.api.manager;
import javax.enterprise.event.Observes;
import javax.enterprise.inject.spi.AfterBeanDiscovery;
import javax.enterprise.inject.spi.BeanManager;
import javax.enterprise.inject.spi.Extension;
/**
* <p>This class provides access to the BeanManager
* by registring the current BeanManager in an extension and
* making it available via a singleton factory</p>
* <p>This is really handy if you like to access CDI functionality
* from places where no injection is available.</p>
*
* <p>Usage:<p/>
* <pre>
* BeanManager bm = BeanManagerProvider.getInstance().getBeanManager();
* </pre>
*
* <a href="mailto:struberg@yahoo.de">Mark Struberg</a>
*/
public class BeanManagerProvider implements Extension
{
private static BeanManagerProvider bmp = null;
private volatile BeanManager bm = null;
/**
* Singleton accessor
* @return the singleton BeanManagerProvider
*/
public static BeanManagerProvider getInstance()
{
return bmp;
}
/**
* @return The {@link BeanManager}
*/
public BeanManager getBeanManager()
{
return bm;
}
/**
* It basiscally doesn't matter which of the system events we use,
* but basically we
* @param abd event which we don't actually use ;)
* @param beanManager the BeanManager we store and make available.
*/
public void setBeanManager(@Observes AfterBeanDiscovery abd, BeanManager beanManager)
{
bm = beanManager;
setBeanManagerProvider(this);
}
/**
* This function exists to prevent findbugs to complain about
* setting a static member from a non-static function.
*/
private static void setBeanManagerProvider(BeanManagerProvider bmpIn)
{
bmp = bmpIn;
}
}