blob: 4ed75c32cadbc23b8c2fad3406b034bbc7f6b1bf [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.myfaces.bean;
import java.lang.reflect.Type;
import java.util.HashSet;
import java.util.Set;
import javax.enterprise.event.Observes;
import javax.enterprise.inject.spi.AfterBeanDiscovery;
import javax.enterprise.inject.spi.AfterDeploymentValidation;
import javax.enterprise.inject.spi.Annotated;
import javax.enterprise.inject.spi.AnnotatedField;
import javax.enterprise.inject.spi.BeanManager;
import javax.enterprise.inject.spi.Extension;
import javax.enterprise.inject.spi.ProcessManagedBean;
import javax.faces.bean.ManagedProperty;
import org.apache.myfaces.cdi.managedproperty.ManagedPropertyInfo;
import org.apache.myfaces.cdi.managedproperty.ManagedPropertyProducer;
public class ManagedPropertyExtension implements Extension
{
private Set<ManagedPropertyInfo> types = new HashSet<>();
public <T> void collect(@Observes ProcessManagedBean<T> event)
{
for (AnnotatedField<?> field : event.getAnnotatedBeanClass().getFields())
{
addAnnotatedTypeIfNecessary(field);
}
}
private void addAnnotatedTypeIfNecessary(Annotated annotated)
{
if (annotated.isAnnotationPresent(ManagedProperty.class))
{
Type type = annotated.getBaseType();
types.add(new ManagedPropertyInfo(type, annotated.getAnnotation(ManagedProperty.class).value()));
}
}
public void afterBean(@Observes AfterBeanDiscovery afterBeanDiscovery, BeanManager beanManager)
{
for (ManagedPropertyInfo typeInfo : types)
{
afterBeanDiscovery.addBean(new ManagedPropertyProducer(beanManager, typeInfo));
}
}
public void cleanup(@Observes AfterDeploymentValidation afterDeploymentValidation)
{
types.clear();
}
}