com.sun.faces.application.annotation.AnnotationManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javax.faces Show documentation
Show all versions of javax.faces Show documentation
This is the master POM file for Oracle's Implementation of the JSF 2.2 Specification.
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright (c) 1997-2013 Oracle and/or its affiliates. All rights reserved.
*
* The contents of this file are subject to the terms of either the GNU
* General Public License Version 2 only ("GPL") or the Common Development
* and Distribution License("CDDL") (collectively, the "License"). You
* may not use this file except in compliance with the License. You can
* obtain a copy of the License at
* https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html
* or packager/legal/LICENSE.txt. See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each
* file and include the License file at packager/legal/LICENSE.txt.
*
* GPL Classpath Exception:
* Oracle designates this particular file as subject to the "Classpath"
* exception as provided by Oracle in the GPL Version 2 section of the License
* file that accompanied this code.
*
* Modifications:
* If applicable, add the following below the License Header, with the fields
* enclosed by brackets [] replaced by your own identifying information:
* "Portions Copyright [year] [name of copyright owner]"
*
* Contributor(s):
* If you wish your version of this file to be governed by only the CDDL or
* only the GPL Version 2, indicate your decision by adding "[Contributor]
* elects to include this software in this distribution under the [CDDL or GPL
* Version 2] license." If you don't indicate a single choice of license, a
* recipient has the option to distribute your version of this file under
* either the CDDL, the GPL Version 2 or to extend the choice of license to
* its licensees as provided above. However, if you add GPL Version 2 code
* and therefore, elected the GPL Version 2 license, then the option applies
* only if the new code is made subject to such option by the copyright
* holder.
*/
package com.sun.faces.application.annotation;
import java.lang.annotation.Annotation;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Collection;
import java.util.Set;
import java.util.concurrent.Callable;
import java.util.concurrent.CancellationException;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.Future;
import java.util.concurrent.FutureTask;
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.faces.FacesException;
import javax.faces.component.UIComponent;
import javax.faces.component.behavior.Behavior;
import javax.faces.component.behavior.ClientBehaviorBase;
import javax.faces.context.FacesContext;
import javax.faces.convert.Converter;
import javax.faces.render.ClientBehaviorRenderer;
import javax.faces.render.RenderKit;
import javax.faces.render.Renderer;
import javax.faces.validator.Validator;
import com.sun.faces.util.FacesLogger;
import javax.faces.event.SystemEvent;
/**
* This class represents the central point for annotation handling within a
* web application.
*/
public class AnnotationManager {
private static final Logger LOGGER = FacesLogger.APPLICATION.getLogger();
private static final Scanner RESOURCE_DEPENDENCY_SCANNER = new ResourceDependencyScanner();
private static final Scanner LISTENER_FOR_SCANNER = new ListenerForScanner();
/*
* This code is the prototype implementation for @EJB, @Resource, ..... support.
*
private static final Scanner EJB_SCANNER = new DelegatedEJBScanner();
private static final Scanner RESOURCE_SCANNER = new DelegatedResourceScanner();
private static final Scanner WEBSERVICE_REF_SCANNER = new DelegatedWebServiceRefScanner();
private static final Scanner PERSISTENCE_UNIT_SCANNER = new DelegatedPersistenceUnitScanner();
private static final Scanner PERSISTENCE_CONTEXT_SCANNER = new DelegatedPersistenceContextScanner();
*/
/**
* {@link Scanner} instances to be used against {@link Behavior} classes.
*/
private static final Scanner[] BEHAVIOR_SCANNERS = {
RESOURCE_DEPENDENCY_SCANNER /*,
EJB_SCANNER,
RESOURCE_SCANNER,
WEBSERVICE_REF_SCANNER,
PERSISTENCE_UNIT_SCANNER,
PERSISTENCE_CONTEXT_SCANNER */
};
/**
* {@link Scanner} instances to be used against {@link ClientBehaviorRenderer} classes.
*/
private static final Scanner[] CLIENT_BEHAVIOR_RENDERER_SCANNERS = {
RESOURCE_DEPENDENCY_SCANNER /*,
EJB_SCANNER,
RESOURCE_SCANNER,
WEBSERVICE_REF_SCANNER,
PERSISTENCE_UNIT_SCANNER,
PERSISTENCE_CONTEXT_SCANNER */
};
/**
* {@link Scanner} instances to be used against {@link UIComponent} classes.
*/
private static final Scanner[] UICOMPONENT_SCANNERS = {
RESOURCE_DEPENDENCY_SCANNER,
LISTENER_FOR_SCANNER /*,
EJB_SCANNER,
RESOURCE_SCANNER,
WEBSERVICE_REF_SCANNER,
PERSISTENCE_UNIT_SCANNER,
PERSISTENCE_CONTEXT_SCANNER */
};
/**
* {@link Scanner} instances to be used against {@link Validator} classes.
*/
private static final Scanner[] VALIDATOR_SCANNERS = {
RESOURCE_DEPENDENCY_SCANNER /*,
EJB_SCANNER,
RESOURCE_SCANNER,
WEBSERVICE_REF_SCANNER,
PERSISTENCE_UNIT_SCANNER,
PERSISTENCE_CONTEXT_SCANNER */
};
/**
* {@link Scanner} instances to be used against {@link Converter} classes.
*/
private static final Scanner[] CONVERTER_SCANNERS = {
RESOURCE_DEPENDENCY_SCANNER /*,
EJB_SCANNER,
RESOURCE_SCANNER,
WEBSERVICE_REF_SCANNER,
PERSISTENCE_UNIT_SCANNER,
PERSISTENCE_CONTEXT_SCANNER */
};
/**
* {@link Scanner} instances to be used against {@link Renderer} classes.
*/
private static final Scanner[] RENDERER_SCANNERS = {
RESOURCE_DEPENDENCY_SCANNER,
LISTENER_FOR_SCANNER
};
private static final Scanner[] EVENTS_SCANNERS = {
RESOURCE_DEPENDENCY_SCANNER
};
/**
* Enum of the different processing targets and their associated
* {@link Scanner}s
*/
private enum ProcessingTarget {
Behavior(BEHAVIOR_SCANNERS),
ClientBehaviorRenderer(CLIENT_BEHAVIOR_RENDERER_SCANNERS),
UIComponent(UICOMPONENT_SCANNERS),
Validator(VALIDATOR_SCANNERS),
Converter(CONVERTER_SCANNERS),
Renderer(RENDERER_SCANNERS),
SystemEvent(EVENTS_SCANNERS);
@SuppressWarnings({"NonSerializableFieldInSerializableClass"})
private Scanner[] scanners;
ProcessingTarget(Scanner[] scanners) {
this.scanners = scanners;
}
}
/**
* The backing cache for all annotation metadata.
*/
private ConcurrentMap,Future