org.jboss.as.ee.metadata.ClassAnnotationInformation Maven / Gradle / Ivy
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.jboss.as.ee.metadata;
import org.jboss.invocation.proxy.MethodIdentifier;
import java.lang.annotation.Annotation;
import java.util.Collections;
import java.util.List;
import java.util.Map;
/**
* Class level information about the annotations present on a particular class.
*
* @param The annotation type
* @param The data type that is used to store the annotation information internally
* @author Stuart Douglas
*/
public final class ClassAnnotationInformation {
private final Class annotationType;
private final List classLevelAnnotations;
private final Map> methodLevelAnnotations;
private final Map> fieldLevelAnnotations;
ClassAnnotationInformation(final Class annotationType, final List classLevelAnnotations, final Map> methodLevelAnnotations, final Map> fieldLevelAnnotations) {
this.annotationType = annotationType;
this.classLevelAnnotations = Collections.unmodifiableList(classLevelAnnotations);
this.methodLevelAnnotations = Collections.unmodifiableMap(methodLevelAnnotations);
this.fieldLevelAnnotations = Collections.unmodifiableMap(fieldLevelAnnotations);
}
public Class getAnnotationType() {
return annotationType;
}
public List getClassLevelAnnotations() {
return classLevelAnnotations;
}
public Map> getFieldLevelAnnotations() {
return fieldLevelAnnotations;
}
public Map> getMethodLevelAnnotations() {
return methodLevelAnnotations;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy