blob: bb1010d1ba85e5b201a7aef73ce5cbb35da09dea [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.webbeans.container;
import org.apache.webbeans.component.InstanceBean;
import org.apache.webbeans.config.WebBeansContext;
import org.apache.webbeans.context.creational.CreationalContextImpl;
import org.apache.webbeans.inject.instance.InstanceImpl;
import javax.enterprise.inject.Instance;
import javax.enterprise.inject.spi.BeanManager;
import javax.enterprise.inject.spi.CDI;
import javax.enterprise.util.TypeLiteral;
import java.lang.annotation.Annotation;
import java.util.Iterator;
public class OwbCDI extends CDI<Object>
{
private WebBeansContext getWebBeansContext()
{
return WebBeansContext.currentInstance();
}
protected Instance<Object> instance()
{
final WebBeansContext webBeansContext = getWebBeansContext();
final BeanManagerImpl bm = webBeansContext.getBeanManagerImpl();
final CreationalContextImpl<Instance<Object>> creationalContext = bm.createCreationalContext(null);
return new InstanceBean<Object>(webBeansContext).create(creationalContext);
}
@Override
public BeanManager getBeanManager()
{
return new InjectableBeanManager(getWebBeansContext().getBeanManagerImpl());
}
@Override
public Instance<Object> select(final Annotation... qualifiers)
{
return instance().select(qualifiers);
}
@Override
public boolean isUnsatisfied()
{
return instance().isUnsatisfied();
}
@Override
public boolean isAmbiguous()
{
return instance().isAmbiguous();
}
@Override
public void destroy(final Object instance)
{
InstanceImpl.class.cast(instance).destroy(instance);
}
@Override
public <U extends Object> Instance<U> select(final TypeLiteral<U> subtype, final Annotation... qualifiers)
{
return instance().select(subtype, qualifiers);
}
@Override
public <U extends Object> Instance<U> select(final Class<U> subtype, final Annotation... qualifiers)
{
return instance().select(subtype, qualifiers);
}
@Override
public Iterator<Object> iterator()
{
return instance().iterator();
}
@Override
public Object get()
{
return instance().get();
}
}