org.apache.webbeans.portable.events.ProcessInjectionTargetImpl Maven / Gradle / Ivy
The newest version!
/*
* 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.portable.events;
import javax.enterprise.inject.spi.AnnotatedType;
import javax.enterprise.inject.spi.InjectionTarget;
import javax.enterprise.inject.spi.ProcessInjectionTarget;
import org.apache.webbeans.config.WebBeansContext;
/**
* Implementation of the {@link ProcessInjectionTarget}.
*
* @version $Rev: 1559930 $ $Date: 2014-01-21 08:46:55 +0100 (Tue, 21 Jan 2014) $
*
* @param bean class info
*/
public class ProcessInjectionTargetImpl implements ProcessInjectionTarget
{
/**Annotated type instance that is used by container to read meta-data*/
private final AnnotatedType annotatedType;
/**Injection target that is used by container to inject dependencies*/
private InjectionTarget injectionTarget = null;
/**Injection target is set or not*/
private boolean set = false;
/**
* Creates a new instance.
*
* @param injectionTarget injection target
*/
public ProcessInjectionTargetImpl(InjectionTarget injectionTarget, AnnotatedType annotatedType)
{
this.injectionTarget = injectionTarget;
this.annotatedType = annotatedType;
}
/**
* {@inheritDoc}
*/
public void addDefinitionError(Throwable t)
{
WebBeansContext.getInstance().getBeanManagerImpl().getErrorStack().pushError(t);
}
public AnnotatedType getAnnotatedType()
{
return annotatedType;
}
/**
* {@inheritDoc}
*/
public InjectionTarget getInjectionTarget()
{
return injectionTarget;
}
/**
* {@inheritDoc}
*/
public void setInjectionTarget(InjectionTarget injectionTarget)
{
this.injectionTarget = injectionTarget;
set = true;
}
/**
* Returns whether or not injection target is set or not.
*
* @return whether or not injection target is set
*/
public boolean isSet()
{
return set;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy