org.apache.webbeans.component.AbstractProducerBean Maven / Gradle / Ivy
/*
* 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.component;
import java.io.Serializable;
import java.lang.reflect.Modifier;
import javax.enterprise.inject.spi.Producer;
import javax.enterprise.inject.spi.BeanAttributes;
import javax.enterprise.inject.spi.ProducerFactory;
import org.apache.webbeans.container.AnnotatedTypeWrapper;
import org.apache.webbeans.util.WebBeansUtil;
/**
* Abstract class for producer components.
*
* @version $Rev$ $Date$
* @param bean type info
*/
public class AbstractProducerBean extends AbstractOwbBean
{
private Class returnType;
private Producer producer;
private InjectionTargetBean> ownerComponent;
/**
* Create a new instance.
*
* @param returnType bean type info
*/
public AbstractProducerBean(InjectionTargetBean> ownerComponent,
WebBeansType webBeansType,
BeanAttributes beanAttributes,
Class returnType,
ProducerFactory> producerFactory)
{
super(ownerComponent.webBeansContext, webBeansType, beanAttributes, ownerComponent.getBeanClass(), !returnType.isPrimitive());
this.returnType = returnType;
this.ownerComponent = ownerComponent;
producer = producerFactory.createProducer(this);
}
@Override
public Producer getProducer()
{
return producer;
}
@Override
public Class getReturnType()
{
return returnType;
}
public InjectionTargetBean> getOwnerComponent()
{
return ownerComponent;
}
@Override
protected String providedId()
{
if (ownerComponent.getAnnotatedType() instanceof AnnotatedTypeWrapper)
{
return ((AnnotatedTypeWrapper) ownerComponent.getAnnotatedType()).getId();
}
return null;
}
/**
* Check null control.
*
* @param instance bean instance
*/
protected void checkNullInstance(Object instance, String producerName)
{
String errorMessage = "WebBeans producer : %s" +
" return type in the component implementation class : %s" +
" scope type must be @Dependent to create null instance";
WebBeansUtil.checkNullInstance(instance, getScope(), errorMessage, producerName,
getBeanClass().getName());
}
/**
* Check passivation check.
*/
protected void checkScopeType(String producerName, Object instance)
{
String errorMessage = "WebBeans producer : %s" +
" instance in the component implementation class : %s" +
" with passivating scope @%s" +
" must be Serializable";
getWebBeansContext().getWebBeansUtil().checkSerializableScopeType(getScope(),
Serializable.class.isInstance(instance), errorMessage, producerName, getBeanClass().getName(),
getScope().getName());
}
protected boolean isPassivationCapable(Class> returnType, Integer modifiers)
{
if(Modifier.isFinal(modifiers) && !(Serializable.class.isAssignableFrom(returnType)))
{
return false;
}
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy