org.jboss.weld.injection.ParameterInjectionPointImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of weld-servlet-shaded Show documentation
Show all versions of weld-servlet-shaded Show documentation
This jar bundles all the bits of Weld and CDI required for running in a Servlet container.
/*
* JBoss, Home of Professional Open Source
* Copyright 2008, Red Hat, Inc., and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* Licensed 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.jboss.weld.injection;
import static org.jboss.weld.injection.FieldInjectionPoint.isCacheableInjectionPoint;
import java.io.Serializable;
import javax.enterprise.context.spi.CreationalContext;
import javax.enterprise.inject.spi.AnnotatedParameter;
import javax.enterprise.inject.spi.Bean;
import javax.enterprise.inject.spi.ProcessInjectionPoint;
import org.jboss.weld.exceptions.UnsupportedOperationException;
import org.jboss.weld.injection.attributes.ForwardingInjectionPointAttributes;
import org.jboss.weld.injection.attributes.ParameterInjectionPointAttributes;
import org.jboss.weld.manager.BeanManagerImpl;
import org.jboss.weld.util.reflection.Reflections;
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
@SuppressFBWarnings(value = "SE_TRANSIENT_FIELD_NOT_RESTORED", justification = "cachedBean field is loaded lazily")
public class ParameterInjectionPointImpl extends ForwardingInjectionPointAttributes implements ParameterInjectionPoint, Serializable {
private static final long serialVersionUID = -8354344628345860324L;
/**
* Creates an injection point without firing the {@link ProcessInjectionPoint} event.
*/
public static ParameterInjectionPointImpl silent(ParameterInjectionPointAttributes attributes) {
return new ParameterInjectionPointImpl(attributes);
}
private final boolean cacheable;
private transient Bean> cachedBean;
private ParameterInjectionPointAttributes attributes;
protected ParameterInjectionPointImpl(ParameterInjectionPointAttributes attributes) {
this.attributes = attributes;
this.cacheable = isCacheableInjectionPoint(attributes);
}
@Override
protected ParameterInjectionPointAttributes delegate() {
return attributes;
}
public void inject(Object declaringInstance, Object value) {
throw new UnsupportedOperationException();
}
@Override
public T getValueToInject(BeanManagerImpl manager, CreationalContext> creationalContext) {
T objectToInject;
if (!cacheable) {
objectToInject = Reflections. cast(manager.getInjectableReference(this, creationalContext));
} else {
if (cachedBean == null) {
cachedBean = manager.resolve(manager.getBeans(this));
}
objectToInject = Reflections. cast(manager.getInjectableReference(this, cachedBean, creationalContext));
}
return objectToInject;
}
@Override
public AnnotatedParameter getAnnotated() {
return attributes.getAnnotated();
}
}