1 /* 2 * $Id: AnnotationTypeFilter.java 19191 2010-08-25 21:05:23Z tcarlson $ 3 * -------------------------------------------------------------------------------------- 4 * Copyright (c) MuleSoft, Inc. All rights reserved. http://www.mulesoft.com 5 * 6 * The software in this package is published under the terms of the CPAL v1.0 7 * license, a copy of which has been included with this distribution in the 8 * LICENSE.txt file. 9 */ 10 package org.mule.util.scan.annotations; 11 12 import java.lang.annotation.Annotation; 13 14 /** 15 * Simply filters for annotations that match the annotation class 16 */ 17 public class AnnotationTypeFilter implements AnnotationFilter 18 { 19 private Class<? extends Annotation> annotation; 20 21 public AnnotationTypeFilter(Class<? extends Annotation> annotation) 22 { 23 this.annotation = annotation; 24 } 25 26 public boolean accept(AnnotationInfo info) 27 { 28 return info.getClassName().equals(annotation.getName()); 29 } 30 }