gov.va.oia.HK2Utilities.AnnotationReporter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of foundation Show documentation
Show all versions of foundation Show documentation
Integrate compatible versions of many external systems to create a REST/HTTP server foundation
/**
* Copyright Notice
*
* This is a work of the U.S. Government and is not subject to copyright
* protection in the United States. Foreign copyrights may apply.
*
* 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 gov.va.oia.HK2Utilities;
import java.lang.annotation.Annotation;
import eu.infomas.annotation.AnnotationDetector.TypeReporter;
/**
* Reporter
*
* @author Dan Armbrust
*/
public class AnnotationReporter implements TypeReporter
{
AnnotatedClasses annotatedClasses_;
Class extends Annotation>[] annotationsToLookFor_;
public AnnotationReporter(final AnnotatedClasses annotatedClasses, final Class extends Annotation>[] annotationsToLookFor)
{
annotatedClasses_ = annotatedClasses;
annotationsToLookFor_ = annotationsToLookFor;
}
/**
* @see eu.infomas.annotation.AnnotationDetector.Reporter#annotations()
*/
@Override
public Class extends Annotation>[] annotations()
{
return annotationsToLookFor_;
}
/**
* @see eu.infomas.annotation.AnnotationDetector.TypeReporter#reportTypeAnnotation(java.lang.Class, java.lang.String)
*/
@Override
public void reportTypeAnnotation(final Class extends Annotation> annotation, final String className)
{
annotatedClasses_.addAnnotation(annotation, className);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy