org.mule.api.annotations
Annotation Type Filter


@Target(value=METHOD)
@Retention(value=SOURCE)
@Documented
public @interface Filter

This annotation marks a method inside a Module as a callable from within a Mule flow to filter a message. Each parameter on this method will be featured as an attribute on the Mule XML invocation.


Optional Element Summary
 String friendlyName
          A user-friendly name for this filter.
 String name
          The xml name of the element that will invoke this filter.
 

name

public abstract String name
The xml name of the element that will invoke this filter. This is optional and if it is not specified a name will be derived from the name of the method.

Default:
""

friendlyName

public abstract String friendlyName
A user-friendly name for this filter.

Default:
""


Copyright © 2010–2013 MuleSoft, Inc.. All rights reserved.