org.jboss.resteasy.util.FindAnnotation Maven / Gradle / Ivy
package org.jboss.resteasy.util;
import javax.ws.rs.CookieParam;
import javax.ws.rs.FormParam;
import javax.ws.rs.HeaderParam;
import javax.ws.rs.MatrixParam;
import javax.ws.rs.PathParam;
import javax.ws.rs.QueryParam;
import javax.ws.rs.core.Context;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.Map;
/**
* @author Bill Burke
* @version $Revision: 1 $
*/
@SuppressWarnings("unchecked")
public final class FindAnnotation
{
/**
*
*/
private static final Class extends Annotation>[] JAXRS_ANNOTATIONS =
(Class extends Annotation>[]) new Class[] {
QueryParam.class,
HeaderParam.class,
CookieParam.class,
PathParam.class,
MatrixParam.class,
FormParam.class,
Context.class,
org.jboss.resteasy.annotations.jaxrs.QueryParam.class,
org.jboss.resteasy.annotations.jaxrs.HeaderParam.class,
org.jboss.resteasy.annotations.jaxrs.CookieParam.class,
org.jboss.resteasy.annotations.jaxrs.PathParam.class,
org.jboss.resteasy.annotations.jaxrs.MatrixParam.class,
org.jboss.resteasy.annotations.jaxrs.FormParam.class,
};
@SuppressWarnings("rawtypes")
private static final Class[] findJaxRSAnnotations_TYPE = new Class[]{};
private FindAnnotation()
{
}
/**
* Finds annotation.
*
* @param type
* @param searchList array of annotations
* @param annotation expected annotation class
* @return annotation or null
*/
public static T findAnnotation(Annotation[] searchList, Class annotation)
{
if (searchList == null) return null;
for (Annotation ann : searchList)
{
if (ann.annotationType().equals(annotation))
{
return (T) ann;
}
}
return null;
}
public static Class extends Annotation>[] findJaxRSAnnotations(Annotation[] searchList)
{
LinkedList> result = new LinkedList>();
for (Class extends Annotation> clazz : JAXRS_ANNOTATIONS)
{
if (findAnnotation(searchList, clazz) != null)
result.add(clazz);
}
return result.toArray(findJaxRSAnnotations_TYPE);
}
/**
* Returns an array of annotations the specified method of
* a resource class.
*
* @param method method
* @return array of annotations
*/
public static Annotation[] getResourcesAnnotations(Method method)
{
Map, Annotation> annotations = new HashMap, Annotation>();
for (Annotation annotation : method.getDeclaringClass().getAnnotations())
{
annotations.put(annotation.getClass(), annotation);
}
for (Annotation annotation : method.getAnnotations())
{
annotations.put(annotation.getClass(), annotation);
}
return annotations.values().toArray(new Annotation[annotations.size()]);
}
/**
* Look for an annotation in a list of annotations. If not there, see if it is on the type provided.
*
* @param type
* @param type type class
* @param annotations array of annotations
* @param annotation expected annotation
* @return annotation or null
*/
public static T findAnnotation(Class> type, Annotation[] annotations, Class annotation)
{
T config = FindAnnotation.findAnnotation(annotations, annotation);
if (config == null)
{
config = type.getAnnotation(annotation);
}
return config;
}
}