INT-1673 added SpEL documentation for @Header, updated @Header javadocs

This commit is contained in:
Oleg Zhurakousky
2010-12-10 13:03:53 -05:00
parent 1cd8280c94
commit 07e0d0c806
3 changed files with 11 additions and 6 deletions

View File

@@ -25,7 +25,10 @@ import java.lang.annotation.Target;
/**
* Annotation indicating that a method parameter's value should be
* retrieved from the message headers. The value of the annotation
* provides the header name, and the optional 'required' property
* can either be a header name (e.g., 'foo') or SpEL expression
* (e.g., 'payload.getCustomerId()') which is quite useful when
* the name of the header has to be dynamically computed. It also
* provides an optional 'required' property which
* specifies whether the attribute value must be available within
* the header. The default value for 'required' is <code>true</code>.
*