org.apache.webbeans.component.ProducerMethodBean 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.lang.reflect.Method;
import javax.enterprise.context.spi.CreationalContext;
import org.apache.webbeans.component.creation.MethodProducerFactory;
import org.apache.webbeans.exception.WebBeansConfigurationException;
/**
* Concrete implementation of the {@link AbstractOwbBean}.
*
* It is defined as producer method component.
*
*
* @version $Rev: 1620383 $ $Date: 2014-08-25 19:26:23 +0200 (Mon, 25 Aug 2014) $
*/
public class ProducerMethodBean extends AbstractProducerBean
{
/** Creator method of the parent component */
protected Method creatorMethod;
/** Disposal method */
protected Method disposalMethod;
/**
* Creates a new instance.
*
* @param ownerComponent parent bean
* @param returnType producer method return type
*/
public ProducerMethodBean(InjectionTargetBean
ownerComponent,
BeanAttributesImpl beanAttributes,
Class returnType,
MethodProducerFactory producerFactory)
{
super(ownerComponent, WebBeansType.PRODUCERMETHOD, beanAttributes, returnType, producerFactory);
}
/**
* Gets the creator method.
*
* @return producer method
*/
public Method getCreatorMethod()
{
return creatorMethod;
}
public Method getDisposalMethod()
{
return disposalMethod;
}
/**
* Sets the method.
*
* @param creatorMethod producer method
*/
public void setCreatorMethod(Method creatorMethod)
{
this.creatorMethod = creatorMethod;
}
/**
* Sets the disposal method.
*
* @param disposalMethod disposal method of this producer method component
*/
public void setDisposalMethod(Method disposalMethod)
{
if (this.disposalMethod != null)
{
throw new WebBeansConfigurationException("There are multiple disposal method for producer method " +
"component with name : " + getName() + " with implementation class " +
getBeanClass().getName() + " with disposal method name : " +
disposalMethod.getName());
}
this.disposalMethod = disposalMethod;
}
@Override
public String getId()
{
if (passivatingId == null)
{
String id = super.getId();
passivatingId = id + "#" + creatorMethod.toGenericString();
}
return passivatingId;
}
@Override
public T create(CreationalContext creationalContext)
{
T instance = super.create(creationalContext);
// Check null instance
checkNullInstance(instance, creatorMethod.getName());
// Check scope type
checkScopeType(creatorMethod.getName());
return instance;
}
@Override
public boolean isPassivationCapable()
{
return isPassivationCapable(creatorMethod.getReturnType(), creatorMethod.getModifiers());
}
}