/* * 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.deltaspike.core.impl.interceptor; import javax.enterprise.inject.spi.AnnotatedType; import java.lang.annotation.Annotation; import java.lang.reflect.Type; import java.util.HashMap; import java.util.HashSet; import java.util.Map; import java.util.Set; class GlobalInterceptorWrapper implements AnnotatedType<Object> { private final AnnotatedType wrapped; private Map<Class<? extends Annotation>, Annotation> annotations; private Set<Annotation> annotationSet; GlobalInterceptorWrapper(AnnotatedType wrapped, Annotation priorityAnnotation) { this.wrapped = wrapped; Set<Annotation> originalAnnotationSet = wrapped.getAnnotations(); this.annotations = new HashMap<Class<? extends Annotation>, Annotation>(originalAnnotationSet.size()); for (Annotation originalAnnotation : originalAnnotationSet) { this.annotations.put(originalAnnotation.annotationType(), originalAnnotation); } this.annotations.put(priorityAnnotation.annotationType(), priorityAnnotation); this.annotationSet = new HashSet<Annotation>(this.annotations.size()); this.annotationSet.addAll(this.annotations.values()); } @Override public Class getJavaClass() { return wrapped.getJavaClass(); } @Override public Set getConstructors() { return wrapped.getConstructors(); } @Override public Set getMethods() { return wrapped.getMethods(); } @Override public Set getFields() { return wrapped.getFields(); } @Override public Type getBaseType() { return wrapped.getBaseType(); } @Override public Set<Type> getTypeClosure() { return wrapped.getTypeClosure(); } @Override public <T extends Annotation> T getAnnotation(Class<T> targetClass) { return (T) this.annotations.get(targetClass); } @Override public Set<Annotation> getAnnotations() { return this.annotationSet; } @Override public boolean isAnnotationPresent(Class<? extends Annotation> targetClass) { return this.annotations.containsKey(targetClass); } }