org.springframework.integration.annotation
Annotation Type Handler


@Target(value={METHOD,ANNOTATION_TYPE})
@Retention(value=RUNTIME)
@Inherited
@Documented
public @interface Handler

Indicates that a method is capable of handling a message or message payload. The method may only accept a single parameter, and the enclosing class should be annotated with @MessageEndpoint.

Author:
Mark Fisher