Spring Integration

org.springframework.integration.util
Class AnnotatedMethodFilter

java.lang.Object
  extended by org.springframework.integration.util.AnnotatedMethodFilter
All Implemented Interfaces:
MethodFilter

public class AnnotatedMethodFilter
extends Object
implements MethodFilter

A MethodFilter implementation that enables the following:

  1. matching on method name, if available
  2. exclusion of void-returning methods if 'requiresReply' is true
  3. limiting to annotated methods if at least one is present

Since:
2.0
Author:
Mark Fisher

Constructor Summary
AnnotatedMethodFilter(Class<? extends Annotation> annotationType, String methodName, boolean requiresReply)
           
 
Method Summary
 List<Method> filter(List<Method> methods)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AnnotatedMethodFilter

public AnnotatedMethodFilter(Class<? extends Annotation> annotationType,
                             String methodName,
                             boolean requiresReply)
Method Detail

filter

public List<Method> filter(List<Method> methods)
Specified by:
filter in interface MethodFilter

Spring Integration

Copyright © 2010. All Rights Reserved.