All Downloads are FREE. Search and download functionalities are using the official Maven repository.

gov.va.oia.HK2Utilities.AnnotationReporter Maven / Gradle / Ivy

Go to download

Integrate compatible versions of many external systems to create a REST/HTTP server foundation

There is a newer version: 0.5.12
Show newest version
/**
 * 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[] annotationsToLookFor_;

	public AnnotationReporter(final AnnotatedClasses annotatedClasses, final Class[] annotationsToLookFor)
	{
		annotatedClasses_ = annotatedClasses;
		annotationsToLookFor_ = annotationsToLookFor;
	}
	/**
	 * @see eu.infomas.annotation.AnnotationDetector.Reporter#annotations()
	 */
	@Override
	public Class[] annotations()
	{
		return annotationsToLookFor_;
	}

	/**
	 * @see eu.infomas.annotation.AnnotationDetector.TypeReporter#reportTypeAnnotation(java.lang.Class, java.lang.String)
	 */
	@Override
	public void reportTypeAnnotation(final Class annotation, final String className)
	{
		annotatedClasses_.addAnnotation(annotation, className);
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy